Sathya
Sathya

Reputation: 39

Invalid template resource property 'Policies'

Can you please help with what is wrong here?

when I am trying to run this following cloud formation stack getting error. I am trying to create the lambda function with the sns role using cloud formation Invalid template resource property 'Policies'

  AWSTemplateFormatVersion: '2010-09-09'
    Description: VPC function.
    Resources:
      Function:
        Type: AWS::Lambda::Function
        Properties:
          Handler: index.handler
          Code:
            S3Bucket: teste-artifact-bucket
            S3Key: function.zip
          Runtime: python3.6
          Timeout: 5
          TracingConfig:
            Mode: Active
      LambdaExecutionRole:
        Description: Creating service role in IAM for AWS Lambda
        Type: AWS::IAM::Role
        Properties:
          RoleName:
            Fn::Sub: ${ProjectId}-execution
          AssumeRolePolicyDocument:
            Statement:
            - Effect: Allow
              Principal:
                Service:
                - lambda.amazonaws.com
              Action: sts:AssumeRole
          Path: /
        Policies:
          PolicyName: Lamda addtional access 
            PolicyDocument:
              Version: 2012-10-17
              Statement:
                - Effect: Allow
                  Action:
                  - sns:Subscribe
                  - sns:Publish
                  - sns:CreateTopic
                  - logs:PutLogEvents
                  - logs:CreateLogStream
                  - logs:CreateLogGroup
                  Resource: '*'
          ManagedPolicyArns:
            - !Sub 'arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole'
      LambdaFunctionLogGroup:
        Type: AWS::Logs::LogGroup
        Properties:
          LogGroupName: !Sub '/aws/lambda/${ProjectId}'
          RetentionInDays: 60

Upvotes: 0

Views: 816

Answers (1)

Pat Myron
Pat Myron

Reputation: 4638

Policies code block isn't indented far enough

Upvotes: 1

Related Questions