-
Notifications
You must be signed in to change notification settings - Fork 13
/
template.yml
217 lines (202 loc) · 7.07 KB
/
template.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
AWSTemplateFormatVersion: "2010-09-09"
Description: "Resources for the Terraform-to-CloudFormation custom type handler"
Parameters:
AllowAWSActions:
Description: If true, AWS actions will be permitted to execute through an administrative role (required for TF::AWS::* resources)
Type: String
Default: 'true'
AllowedValues:
- "true"
- "false"
S3Bucket:
Description: The name of the bucket that contains the Lambda source (leave blank to use latest)
Type: String
Default: ''
S3Key:
Description: The key of the ZIP package within the bucket (leave blank to use latest)
Type: String
Default: ''
Metadata:
AWS::CloudFormation::Interface:
ParameterGroups:
- Label:
default: "General Settings"
Parameters:
- AllowAWSActions
- Label:
default: "Advanced Configuration"
Parameters:
- S3Bucket
- S3Key
ParameterLabels:
AllowAWSActions:
default: "Allow All AWS Actions"
S3Bucket:
default: "Executor Lambda Code S3 Bucket"
S3Key:
default: "Executor Lambda Code S3 Key"
Mappings:
RegionMap:
us-east-1:
bucketname: ianmckay-us-east-1
us-east-2:
bucketname: ianmckay-us-east-2
us-west-1:
bucketname: ianmckay-us-west-1
us-west-2:
bucketname: ianmckay-us-west-2
ap-south-1:
bucketname: ianmckay-ap-south-1
ap-northeast-2:
bucketname: ianmckay-ap-northeast-2
ap-southeast-1:
bucketname: ianmckay-ap-southeast-1
ap-southeast-2:
bucketname: ianmckay-ap-southeast-2
ap-northeast-1:
bucketname: ianmckay-ap-northeast-1
ca-central-1:
bucketname: ianmckay-ca-central-1
eu-central-1:
bucketname: ianmckay-eu-central-1
eu-west-1:
bucketname: ianmckay-eu-west-1
eu-west-2:
bucketname: ianmckay-eu-west-2
eu-west-3:
bucketname: ianmckay-eu-west-3
eu-north-1:
bucketname: ianmckay-eu-north-1
sa-east-1:
bucketname: ianmckay-sa-east-1
af-south-1:
bucketname: ianmckay-af-south-1
ap-east-1:
bucketname: ianmckay-ap-east-1
ap-northeast-3:
bucketname: ianmckay-ap-northeast-3
eu-south-1:
bucketname: ianmckay-eu-south-1
me-south-1:
bucketname: ianmckay-me-south-1
Conditions:
S3Defined: !Not [ !Equals [ '', !Ref S3Bucket ] ]
AllowAWS: !Equals [ 'true', !Ref AllowAWSActions ]
Resources:
StateS3Bucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Sub "cfntf-${AWS::Region}-${AWS::AccountId}"
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: AES256
PublicAccessBlockConfiguration:
BlockPublicAcls: true
BlockPublicPolicy: true
IgnorePublicAcls: true
RestrictPublicBuckets: true
ExecutorLambdaServiceRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Path: /
Policies:
- PolicyName: CoreFunctionality
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: "*"
- Effect: Allow
Action: secretsmanager:GetSecretValue
Resource: !Sub "arn:${AWS::Partition}:secretsmanager:${AWS::Region}:${AWS::AccountId}:secret:terraform/*"
- Effect: Allow
Action:
- s3:GetObject
- s3:PutObject
- s3:DeleteObject
Resource: !Sub "${StateS3Bucket.Arn}/*"
- !If
- "AllowAWS"
- PolicyName: AWSActions
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action: '*'
Resource: '*'
- !Ref "AWS::NoValue"
ExecutorLambdaLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: "/aws/lambda/cfntf-executor"
RetentionInDays: 14
ExecutorLambdaFunction:
Type: AWS::Lambda::Function
Properties:
FunctionName: cfntf-executor
Handler: index.handler
Role: !GetAtt ExecutorLambdaServiceRole.Arn
Environment:
Variables:
BUCKET: !Ref StateS3Bucket
Code:
S3Bucket: !If
- S3Defined
- !Ref S3Bucket
- Fn::FindInMap:
- RegionMap
- !Ref AWS::Region
- bucketname
S3Key: !If
- S3Defined
- !Ref S3Key
- cfn-tf-custom-types/app.zip
Runtime: python3.8
MemorySize: 1024
Timeout: 900
ExecutorLambdaInvokeConfig:
Type: AWS::Lambda::EventInvokeConfig
Properties:
FunctionName: !Ref ExecutorLambdaFunction
MaximumRetryAttempts: 1
Qualifier: "$LATEST"
ExecutionRole:
Type: AWS::IAM::Role
Properties:
MaxSessionDuration: 8400
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: resources.cloudformation.amazonaws.com
Action: sts:AssumeRole
Path: "/"
Policies:
- PolicyName: ResourceTypePolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- "lambda:InvokeFunction"
- "s3:DeleteObject"
- "s3:GetObject"
- "s3:ListBucket"
Resource: "*"
Outputs:
ExecutionRoleARN:
Description: The execution role ARN to use for registered types
Value: !GetAtt ExecutionRole.Arn