From 52bf02e634e8506ec8ca1f6467575c36bebd2fd2 Mon Sep 17 00:00:00 2001 From: Michael Standen Date: Fri, 29 Sep 2017 07:37:38 +1300 Subject: [PATCH] Fix tabbing for iamRoleStatements --- docs/providers/aws/guide/serverless.yml.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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: "*"