Last active
August 10, 2019 08:46
-
-
Save mludvig/af58ff604323b98ec35c76a01aa31727 to your computer and use it in GitHub Desktop.
CloudFormation Service Role and Policy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
AWSTemplateFormatVersion: '2010-09-09' | |
Description: CloudFormation Service Role and Policy | |
Metadata: | |
Author: Michael Ludvig | |
Url: https://aws.nz/best-practice/cloudformation-service-roles/ | |
Parameters: | |
RoleName: | |
Description: IAM Role name | |
Type: String | |
Default: svcCloudFormation | |
PolicyName: | |
Description: IAM Policy name | |
Type: String | |
Default: svcCloudFormation | |
Resources: | |
CfnServiceRole: | |
Type: AWS::IAM::Role | |
Properties: | |
RoleName: !Ref RoleName | |
Path: /service/ | |
AssumeRolePolicyDocument: | |
Version: 2012-10-17 | |
Statement: | |
- Action: sts:AssumeRole | |
Effect: Allow | |
Principal: | |
Service: cloudformation.amazonaws.com | |
ManagedPolicyArns: | |
- arn:aws:iam::aws:policy/AdministratorAccess | |
CfnUserPolicy: | |
Type: AWS::IAM::ManagedPolicy | |
Properties: | |
ManagedPolicyName: !Ref PolicyName | |
Description: User policy for creating CFN stacks with the use of svcCloudFormation role. | |
Path: / | |
PolicyDocument: | |
Version: 2012-10-17 | |
Statement: | |
- Action: | |
- iam:PassRole | |
Effect: Allow | |
Resource: | |
- !GetAtt CfnServiceRole.Arn | |
- Action: | |
- cloudformation:CreateUploadBucket | |
- cloudformation:CreateStack | |
Effect: Allow | |
Resource: '*' | |
- Action: | |
- s3:PutObject | |
- s3:GetObject | |
- s3:ListBucket | |
Effect: Allow | |
Resource: | |
- arn:aws:s3:::cf-templates-* | |
- arn:aws:s3:::cf-templates-*/* | |
Outputs: | |
CfnServiceRoleArn: | |
Value: !GetAtt CfnServiceRole.Arn | |
CfnUserPolicyArn: | |
Value: !Ref CfnUserPolicy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment