diff --git a/docs/providers/aws/guide/serverless.yml.md b/docs/providers/aws/guide/serverless.yml.md index 2b699727a..3193237c9 100644 --- a/docs/providers/aws/guide/serverless.yml.md +++ b/docs/providers/aws/guide/serverless.yml.md @@ -55,13 +55,13 @@ provider: key: value iamRoleStatements: # IAM role statements so that services can be accessed in the AWS account - Effect: 'Allow' - Action: - - 's3:ListBucket' - Resource: - Fn::Join: - - '' - - - 'arn:aws:s3:::' - - Ref: ServerlessDeploymentBucket + Action: + - 's3:ListBucket' + Resource: + Fn::Join: + - '' + - - 'arn:aws:s3:::' + - Ref: ServerlessDeploymentBucket stackPolicy: # Optional CF stack policy. The example below allows updates to all resources except deleting/replacing EC2 instances (use with caution!) - Effect: Allow Principal: "*"