-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathds_env_backing_store.yaml
275 lines (257 loc) · 8.18 KB
/
ds_env_backing_store.yaml
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
# Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: MIT-0
# The following template is designed to provision and configure a secure environment for data science.
# This template creates an AWS VPC, a KMS CMK, an administrator and data scientist role, and an S3 bucket.
# The template also provisions a Service Catalog portfolio and product to create notebooks into the VPC.
# Lastly the template stores outputs into Parameter Store so they can be referenced later by SC products.
Description: Data Science Environment S3 data storage
Parameters:
SharedServiceStackSetName:
Type: String
Description: Common root name used across shared service cloudformation resources
TeamName:
Type: String
AllowedPattern: '[A-Za-z0-9\-]*'
Description: Please specify your team name. Used as a suffix for team's resource names.
EnvType:
Description: System Environment
Type: String
Default: dev
Outputs:
KMSCMK:
Description: KMS Key ARN for the data and model buckets
Value: !GetAtt KMSCMK.Arn
Export:
Name: !Sub 'ds-kms-cmk-${TeamName}-${EnvType}-arn'
DataBucket:
Description: Data bucket name
Value: !Ref DataBucket
Export:
Name: !Sub 'ds-s3-data-${TeamName}-${EnvType}'
ModelArtifactsBucket:
Description: Model artifacts bucket
Value: !Ref ModelArtifactsBucket
Export:
Name: !Sub 'ds-s3-models-${TeamName}-${EnvType}'
CodeCommitUrl:
Description: Code Commit Repository
Value: !GetAtt CodeCommitRepo.CloneUrlHttp
Export:
Name: !Sub 'ds-source-${TeamName}-${EnvType}-url'
Resources:
KMSCMK:
Type: 'AWS::KMS::Key'
Properties:
Description: KMS key for S3 buckets
EnableKeyRotation: true
KeyPolicy:
Id: key-policy-1
Version: 2012-10-17
Statement:
- Sid: Enable IAM User Permissions
Effect: Allow
Principal:
AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root"
Action: 'kms:*'
Resource: '*'
- Sid: Allow access for Key Administrators
Effect: Allow
Principal:
AWS:
Fn::ImportValue:
!Sub "ds-admin-role-${TeamName}-${EnvType}-arn"
Action:
- 'kms:Create*'
- 'kms:Describe*'
- 'kms:Enable*'
- 'kms:List*'
- 'kms:Put*'
- 'kms:Update*'
- 'kms:Revoke*'
- 'kms:Disable*'
- 'kms:Get*'
- 'kms:Delete*'
- 'kms:TagResource'
- 'kms:UntagResource'
- 'kms:ScheduleKeyDeletion'
- 'kms:CancelKeyDeletion'
Resource: '*'
- Sid: Allow access for Key Users
Effect: Allow
Principal:
AWS: !Sub "arn:aws:iam::${AWS::AccountId}:root"
# TODO: reduce to team specific role
# AWS: !Sub "arn:aws:iam::${AWS::AccountId}:role/service-role/ds-notebook-role-${TeamName}-${EnvType}"
# AWS: !Sub "arn:aws:iam::${AWS::AccountId}:role/ds-user-role-${TeamName}-${EnvType}"
Action:
- 'kms:Encrypt'
- 'kms:Decrypt'
- 'kms:CreateGrant'
- 'kms:ReEncrypt'
- 'kms:GenerateDataKey'
- 'kms:DescribeKey'
Resource: '*'
Condition:
StringNotEquals:
'aws:SourceVpce':
Fn::ImportValue:
!Sub "ds-s3-endpoint-${SharedServiceStackSetName}-id"
Tags:
- Key: TeamName
Value: !Ref TeamName
- Key: EnvironmentType
Value: !Ref EnvType
KMSCMKAlias:
Type: 'AWS::KMS::Alias'
Properties:
AliasName: !Sub "alias/ds-s3-kms-cmk-${TeamName}-${EnvType}"
TargetKeyId: !Ref KMSCMK
KMSCMKArn:
Type: 'AWS::SSM::Parameter'
Properties:
Name: !Sub "ds-kms-cmk-${TeamName}-${EnvType}-arn"
Type: String
Value: !GetAtt
- KMSCMK
- Arn
Description: SageMakerExecRole ARN
DataBucket:
Type: 'AWS::S3::Bucket'
Properties:
BucketName:
!Join
- ''
-
- 'ds-data-bucket-'
- !Ref TeamName
- '-'
- !Ref EnvType
- '-'
- !Select
- 4
- !Split
- '-'
- !Select
- 2
- !Split
- /
- !Ref 'AWS::StackId'
PublicAccessBlockConfiguration:
BlockPublicAcls: TRUE
BlockPublicPolicy: TRUE
IgnorePublicAcls: TRUE
RestrictPublicBuckets: TRUE
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: 'aws:kms'
KMSMasterKeyID: !Ref KMSCMK
Tags:
- Key: TeamName
Value: !Ref TeamName
- Key: EnvironmentType
Value: !Ref EnvType
DataBucketPolicy:
Type: 'AWS::S3::BucketPolicy'
Properties:
Bucket: !Ref DataBucket
PolicyDocument:
Statement:
- Action:
- 's3:GetObject'
- 's3:PutObject'
- 's3:ListBucket'
Effect: Deny
Resource:
- !Sub "arn:aws:s3:::${DataBucket}/*"
- !Sub "arn:aws:s3:::${DataBucket}"
Principal: '*'
Condition:
StringNotEquals:
'aws:SourceVpce':
Fn::ImportValue:
!Sub "ds-s3-endpoint-${SharedServiceStackSetName}-id"
ModelArtifactsBucket:
Type: 'AWS::S3::Bucket'
Properties:
BucketName:
!Join
- ""
-
- "ds-model-bucket-"
- !Ref TeamName
- "-"
- !Ref EnvType
- "-"
- !Select
- 4
- !Split
- '-'
- !Select
- 2
- !Split
- /
- !Ref 'AWS::StackId'
PublicAccessBlockConfiguration:
BlockPublicAcls: TRUE
BlockPublicPolicy: TRUE
IgnorePublicAcls: TRUE
RestrictPublicBuckets: TRUE
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: 'aws:kms'
KMSMasterKeyID: !Ref KMSCMK
Tags:
- Key: TeamName
Value: !Ref TeamName
- Key: EnvironmentType
Value: !Ref EnvType
ModelArtifactsBucketPolicy:
Type: 'AWS::S3::BucketPolicy'
Properties:
Bucket: !Ref ModelArtifactsBucket
PolicyDocument:
Statement:
- Action:
- 's3:GetObject'
- 's3:PutObject'
- 's3:ListBucket'
Effect: Deny
Resource:
- !Sub "arn:aws:s3:::${ModelArtifactsBucket}/*"
- !Sub "arn:aws:s3:::${ModelArtifactsBucket}"
Principal: '*'
Condition:
StringNotEquals:
'aws:SourceVpce':
Fn::ImportValue:
!Sub "ds-s3-endpoint-${SharedServiceStackSetName}-id"
CodeCommitRepo:
Type: 'AWS::CodeCommit::Repository'
Properties:
RepositoryName: !Sub 'ds-source-${TeamName}-${EnvType}'
RepositoryDescription: Data science project code repository
Code:
S3:
Bucket: '< S3_CFN_STAGING_BUCKET >'
Key: '< S3_CFN_STAGING_PATH >/project_template.zip'
Tags:
- Key: TeamName
Value: !Ref TeamName
- Key: EnvironmentType
Value: !Ref EnvType
S3DataBucketNameSSMParameter:
Type: 'AWS::SSM::Parameter'
Properties:
Name: !Sub "ds-s3-data-bucket-${TeamName}-${EnvType}"
Type: String
Value: !Ref DataBucket
Description: Data Science S3 data bucket name for the project
S3ModelBucketNameSSMParameter:
Type: 'AWS::SSM::Parameter'
Properties:
Name: !Sub "ds-s3-model-artifact-bucket-${TeamName}-${EnvType}"
Type: String
Value: !Ref ModelArtifactsBucket
Description: Data Science S3 data bucket name for the project