forked from aws-samples/aws-lex-web-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coderepo.yaml
235 lines (219 loc) · 9.14 KB
/
coderepo.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
AWSTemplateFormatVersion: 2010-09-09
Description: >
This template creates a CodeCommit repo and initializes it with this
project sources. It uses CodeBuild and a custom resource to git push
the files into the repo.
Parameters:
CodeCommitRepoName:
Type: String
Description: Name of CodeCommit repository name to be created.
Default: lex-web-ui
MinLength: 1
MaxLength: 100
AllowedPattern: '^[\w\.-]+$'
ConstraintDescription: Alphanumeric, dot and dash.
CodeBuildName:
Type: String
Description: CodeBuild project used to initialize the code repo
Default: lex-web-ui-init
MinLength: 2
MaxLength: 255
AllowedPattern: '^[A-Za-z0-9][A-Za-z0-9\-_]{1,254}$'
ConstraintDescription: >
Should start with Alphanumeric. May contain alphanumeric, undescore
and dash.
SourceBucket:
Description: S3 bucket where the source is located
Type: String
Default: aws-bigdata-blog
SourceObject:
Description: S3 object zip file containing the project source
Type: String
Default: artifacts/aws-lex-web-ui/artifacts/src.zip
CustomResourceCodeObject:
Type: String
Description: >
S3 object zip file containing Lambda custom resource functions
Default: artifacts/aws-lex-web-ui/artifacts/custom-resources.zip
CognitoIdentityPoolId:
Type: String
Description: >
Cognito Identity Pool Id to used in the web app configuration.
MinLength: 1
MaxLength: 55
AllowedPattern: '^[\w-]+:[0-9a-f-]+$'
ConstraintDescription: >
Alphanumeric followed by a colum and ending with a hex uuid type.
BotName:
Description: >
Name of Lex bot to be used in the web app configuration.
Type: String
MinLength: 2
MaxLength: 50
AllowedPattern: '^[a-zA-Z]+((_[a-zA-Z]+)*|([a-zA-Z]+_)*|_)'
ConstraintDescription: >
Must conform with the permitted Lex Bot name pattern.
Resources:
CodeCommitRepo:
Type: AWS::CodeCommit::Repository
Properties:
RepositoryDescription: Lex Web UI
RepositoryName: !Ref CodeCommitRepoName
CodeBuild:
Type: AWS::CodeBuild::Project
Properties:
Name: !Ref CodeBuildName
Description: Used to initialize the Lex Web UI CodeCommit Repo
Artifacts:
Type: NO_ARTIFACTS
Environment:
Type: LINUX_CONTAINER
Image: aws/codebuild/nodejs:8.11.0
ComputeType: BUILD_GENERAL1_SMALL
EnvironmentVariables:
- Name: REPO_URL
Value: !GetAtt CodeCommitRepo.CloneUrlHttp
- Name: POOL_ID
Value: !Ref CognitoIdentityPoolId
- Name: BOT_NAME
Value: !Ref BotName
ServiceRole: !GetAtt CodeBuildRole.Arn
TimeoutInMinutes: 10
Source:
Type: S3
Location: !Sub "${SourceBucket}/${SourceObject}"
BuildSpec: !Sub |
version: 0.1
phases:
install:
commands:
- npm install -g n
- n stable
- npm update -g npm
pre_build:
commands:
- make config
build:
commands:
- aws configure set region "${AWS::Region}"
- git config --global user.name 'CodeCommit Init'
- git config --global user.email '<>'
- git config --global push.default simple
- git config --global "credential.https://git-codecommit.${AWS::Region}.amazonaws.com.helper" '!aws codecommit credential-helper $@'
- git config --global "credential.https://git-codecommit.${AWS::Region}.amazonaws.com.UseHttpPath" 'true'
- git init
- git add .
- git commit -a -m initial
- git remote add origin "${!REPO_URL}"
- git push --set-upstream origin master
# custom resource to start code build project
CodeBuildStarter:
Type: Custom::CodeBuildStarter
Properties:
ServiceToken: !GetAtt CodeBuildStarterLambda.Arn
ProjectName: !Ref CodeBuild
# Lambda function for custom resource
CodeBuildStarterLambda:
Type: AWS::Lambda::Function
Properties:
Code:
S3Bucket: !Ref SourceBucket
S3Key: !Ref CustomResourceCodeObject
Handler: codebuild-start.handler
Role: !GetAtt CodeBuildStarterLambdaRole.Arn
Runtime: python2.7
Timeout: 120
CodeBuildRole:
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Principal:
Service:
- codebuild.amazonaws.com
Effect: Allow
Action:
- sts:AssumeRole
Policies:
- PolicyName: CodeCommitGetListPush
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- codecommit:BatchGetRepositories
- codecommit:CreateBranch
- codecommit:Get*
- codecommit:GitPull
- codecommit:GitPush
- codecommit:List*
- codecommit:UpdateDefaultBranch
Resource:
- !GetAtt CodeCommitRepo.Arn
- PolicyName: S3GetObject
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- s3:GetObject*
Resource:
- !Sub "arn:aws:s3:::${SourceBucket}/${SourceObject}"
- PolicyName: CloudWatchLogsCodeBuild
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource:
- !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/codebuild/${CodeBuildName}"
- !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/codebuild/${CodeBuildName}:*"
CodeBuildStarterLambdaRole:
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Principal:
Service:
- lambda.amazonaws.com
Effect: Allow
Action:
- sts:AssumeRole
Policies:
- PolicyName: LogsForLambda
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource:
- !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/lambda/*"
- !Sub "arn:aws:logs:${AWS::Region}:${AWS::AccountId}:log-group:/aws/lambda/*:*"
- PolicyName: CodeBuildStart
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- codebuild:StartBuild
Resource: !GetAtt CodeBuild.Arn
Outputs:
CodeCommitRepoUrl:
Description: CodeCommit repository clone URL
Value: !GetAtt CodeCommitRepo.CloneUrlHttp
CodeCommitRepoArn:
Description: CodeCommit repository clone URL
Value: !GetAtt CodeCommitRepo.Arn
CodeCommitRepoName:
Description: CodeCommit repository name
Value: !GetAtt CodeCommitRepo.Name