forked from aws-samples/aws-lex-web-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcognito.yaml
472 lines (448 loc) · 15.3 KB
/
cognito.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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
AWSTemplateFormatVersion: 2010-09-09
Transform: AWS::Serverless-2016-10-31
Description: >
This template configures a user pool domain and hosted login
Parameters:
CognitoIdentityPoolName:
Type: String
Description: Cognito identity pool name.
Default: identity pool
MinLength: 1
MaxLength: 128
AllowedPattern: '^[\w ]+$'
ConstraintDescription: Alphanumeric and spaces.
LexBotName:
Type: String
Description: Lex bot name used to build IAM policy
Default: OrderFlowers
LexV2BotId:
Description: >
Name of an existing Lex V2 Bot to be used by the web ui.
Type: String
Default: ''
LexV2BotAliasId:
Description: >
Use your Lex V2 bot's alias id.
Type: String
Default: ''
ForceCognitoLogin:
Type: String
Default: false
Description: >
If set to True, the menu with a login action will not be displayed
in the Lex Web Ui, and the Cognito login will be executed automatically.
ShouldEnableLiveChat:
Type: String
Default: false
Description: Whether or not add policy to invoke live chat API
AllowedSignUpEmailDomain:
Type: String
Default: ''
Description: >-
Email address domain (example.com) or comma separated list of email domains
(example1.com, example2.com) allowed to signin and signup using the web UI.
If left empty, signup via the web UI is disabled and users will have to be created using
Cognito.
AllowedPattern: '^(|([\w-]+\.)+[\w-]{2,6}(, *([\w-]+\.)+[\w-]{2,6})*)$'
AllowStreamingResponses:
Type: String
Default: false
AllowedValues:
- true
- false
Description: >
If set to True, a websocket API Gateway will be established and messages will be sent to this web socket
in addition to the Lex bot directly.
ShouldEnableUpload:
Type: String
Default: false
AllowedValues:
- true
- false
Description: >
If set to True, the upload document functionality will be available. The icon for uploading documents
will appear in the UI.
UploadBucket:
Type: String
Default: ''
Description: >
If enabling upload, the name of the S3 bucket where uploaded documents should be stored
Conditions:
ShouldAllowSignUpEmailDomain: !Not [!Equals [!Ref AllowedSignUpEmailDomain, ""]]
NeedsForceCognitoLogin: !Equals [ !Ref ForceCognitoLogin, 'true' ]
IsLexV1: !Not [ !Equals [!Ref LexBotName, ''] ]
IsLexV2: !Not [ !Equals [!Ref LexV2BotId, ''] ]
EnableLiveChat: !Equals [!Ref ShouldEnableLiveChat, true]
EnableStreaming: !Equals [!Ref AllowStreamingResponses, true]
EnableUpload: !Equals [!Ref ShouldEnableUpload, true]
Resources:
CognitoIdentityPool:
Type: AWS::Cognito::IdentityPool
Properties:
IdentityPoolName: !Ref CognitoIdentityPoolName
AllowUnauthenticatedIdentities: true
CognitoIdentityProviders:
- ClientId: !Ref CognitoUserPoolClient
ProviderName: !GetAtt CognitoUserPool.ProviderName
CognitoIdentityPoolSetRole:
Type: AWS::Cognito::IdentityPoolRoleAttachment
Properties:
IdentityPoolId: !Ref CognitoIdentityPool
Roles:
authenticated: !If [ IsLexV1, !GetAtt CognitoAuthRoleV1.Arn, !GetAtt CognitoAuthRoleV2.Arn ]
unauthenticated: !If [ IsLexV1, !GetAtt CognitoUnauthRoleV1.Arn, !GetAtt CognitoUnauthRoleV2.Arn ]
CognitoUserPool:
Type: AWS::Cognito::UserPool
Properties:
AdminCreateUserConfig:
AllowAdminCreateUserOnly: !If
- ShouldAllowSignUpEmailDomain
- false
- true
AutoVerifiedAttributes:
- "email"
MfaConfiguration: "OFF"
LambdaConfig: !If
- ShouldAllowSignUpEmailDomain
- PreAuthentication: !GetAtt CognitoUserPoolEmailDomainVerifyFunction.Arn
PreSignUp: !GetAtt CognitoUserPoolEmailDomainVerifyFunction.Arn
- !Ref AWS::NoValue
AliasAttributes:
- "email"
Schema:
- AttributeDataType: String
Name: "given_name"
Required: true
Mutable: true
- AttributeDataType: String
Name: "family_name"
Required: true
Mutable: true
- AttributeDataType: String
Name: "email"
Required: true
Mutable: true
- AttributeDataType: String
Name: "preferred_username"
Required: true
Mutable: true
UserPoolName: !Join [ '-', [ 'UserPool', !Select [ 0, !Split [ "-CognitoIdentityPool", !Ref "AWS::StackName" ] ] ] ]
CognitoUserPoolClient:
Type: AWS::Cognito::UserPoolClient
Properties:
GenerateSecret: false
UserPoolId: !Ref CognitoUserPool
CognitoUnauthRoleV1:
Condition: IsLexV1
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Principal:
Federated: cognito-identity.amazonaws.com
Effect: Allow
Action:
- sts:AssumeRoleWithWebIdentity
Condition:
StringEquals:
cognito-identity.amazonaws.com:aud: !Ref CognitoIdentityPool
ForAnyValue:StringLike:
cognito-identity.amazonaws.com:amr: unauthenticated
Policies:
- PolicyName: LexPost
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: !If [ NeedsForceCognitoLogin, Deny, Allow ]
Action:
- lex:PostText
- lex:PostContent
- lex:DeleteSession
- lex:PutSession
Resource:
- !Sub "arn:aws:lex:${AWS::Region}:${AWS::AccountId}:bot:${LexBotName}:*"
- !If
- EnableLiveChat
- PolicyName: APIPost
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: !If [NeedsForceCognitoLogin, Deny, Allow]
Action:
- execute-api:Invoke
Resource:
- !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:*/Prod/POST/livechat"
- !Ref AWS::NoValue
- !If
- EnableStreaming
- PolicyName: WebsocketConnect
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: !If [NeedsForceCognitoLogin, Deny, Allow]
Action:
- execute-api:Invoke
Resource:
- !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:*/Prod/$connect"
- !Ref AWS::NoValue
CognitoUnauthRoleV2:
Condition: IsLexV2
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Principal:
Federated: cognito-identity.amazonaws.com
Effect: Allow
Action:
- sts:AssumeRoleWithWebIdentity
Condition:
StringEquals:
cognito-identity.amazonaws.com:aud: !Ref CognitoIdentityPool
ForAnyValue:StringLike:
cognito-identity.amazonaws.com:amr: unauthenticated
Policies:
- PolicyName: LexV2
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: !If [ NeedsForceCognitoLogin, Deny, Allow ]
Action:
- lex:RecognizeText
- lex:RecognizeUtterance
- lex:DeleteSession
- lex:PutSession
Resource:
- !Sub "arn:aws:lex:${AWS::Region}:${AWS::AccountId}:bot-alias/${LexV2BotId}/${LexV2BotAliasId}"
- !If
- EnableLiveChat
- PolicyName: APIPost
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: !If [NeedsForceCognitoLogin, Deny, Allow]
Action:
- execute-api:Invoke
Resource:
- !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:*/Prod/POST/livechat"
- !Ref AWS::NoValue
- !If
- EnableStreaming
- PolicyName: WebsocketConnect
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: !If [NeedsForceCognitoLogin, Deny, Allow]
Action:
- execute-api:Invoke
Resource:
- !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:*/Prod/$connect"
- !Ref AWS::NoValue
CognitoAuthRoleV1:
Condition: IsLexV1
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Principal:
Federated: cognito-identity.amazonaws.com
Effect: Allow
Action:
- sts:AssumeRoleWithWebIdentity
Condition:
StringEquals:
cognito-identity.amazonaws.com:aud: !Ref CognitoIdentityPool
ForAnyValue:StringLike:
cognito-identity.amazonaws.com:amr: authenticated
Policies:
- PolicyName: PollySynth
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- polly:SynthesizeSpeech
Resource: '*'
- PolicyName: LexPost
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- lex:PostText
- lex:PostContent
- lex:DeleteSession
- lex:PutSession
Resource:
- !Sub "arn:aws:lex:${AWS::Region}:${AWS::AccountId}:bot:${LexBotName}:*"
- !If
- EnableLiveChat
- PolicyName: APIPost
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- execute-api:Invoke
Resource:
- !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:*/Prod/POST/livechat"
- !Ref AWS::NoValue
- !If
- EnableStreaming
- PolicyName: WebsocketConnect
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- execute-api:Invoke
Resource:
- !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:*/Prod/$connect"
- !Ref AWS::NoValue
- !If
- EnableUpload
- PolicyName: S3Upload
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- s3:PutObject
Resource:
- !Sub "arn:aws:s3:::${UploadBucket}/*"
- !Ref AWS::NoValue
CognitoAuthRoleV2:
Condition: IsLexV2
Type: AWS::IAM::Role
Properties:
Path: /
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Principal:
Federated: cognito-identity.amazonaws.com
Effect: Allow
Action:
- sts:AssumeRoleWithWebIdentity
Condition:
StringEquals:
cognito-identity.amazonaws.com:aud: !Ref CognitoIdentityPool
ForAnyValue:StringLike:
cognito-identity.amazonaws.com:amr: authenticated
Policies:
- PolicyName: PollySynth
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- polly:SynthesizeSpeech
Resource: '*'
- PolicyName: LexV2
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- lex:RecognizeText
- lex:RecognizeUtterance
- lex:DeleteSession
- lex:PutSession
Resource:
- !Sub "arn:aws:lex:${AWS::Region}:${AWS::AccountId}:bot-alias/${LexV2BotId}/${LexV2BotAliasId}"
- !If
- EnableLiveChat
- PolicyName: APIPostV2
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- execute-api:Invoke
Resource:
- !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:*/Prod/POST/livechat"
- !Ref AWS::NoValue
- !If
- EnableStreaming
- PolicyName: WebsocketConnect
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- execute-api:Invoke
Resource:
- !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:*/Prod/$connect"
- !Ref AWS::NoValue
- !If
- EnableUpload
- PolicyName: S3Upload
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- s3:PutObject
Resource:
- !Sub "arn:aws:s3:::${UploadBucket}/*"
- !Ref AWS::NoValue
CognitoUserPoolEmailDomainVerifyFunction:
Type: AWS::Serverless::Function
Condition: ShouldAllowSignUpEmailDomain
Properties:
Handler: index.handler
Runtime: nodejs18.x
Timeout: 3
Environment:
Variables:
ALLOWED_SIGNUP_EMAIL_DOMAINS: !Ref AllowedSignUpEmailDomain
InlineCode: |
exports.handler = async (event, context) => {
console.log(event);
const allowed_domains = (
process.env?.ALLOWED_SIGNUP_EMAIL_DOMAINS
.split(",").map(domain => {return domain.trim()})
);
const { email } = event.request?.userAttributes;
if (!email || !email.includes('@')) {
throw Error('Username does not exists or invalid email address');
}
const emailDomain = email?.split('@')[1];
if (!emailDomain || !allowed_domains) {
throw new Error('Server error - invalid configuration');
}
if (!allowed_domains.includes(emailDomain)) {
throw new Error('Invalid email address domain');
}
return event;
};
Metadata:
cfn_nag:
rules_to_suppress:
- id: W89
reason: Customer can use VPC if desired
CognitoUserPoolEmailDomainVerifyPermission:
Type: AWS::Lambda::Permission
Condition: ShouldAllowSignUpEmailDomain
Properties:
Action: lambda:InvokeFunction
FunctionName: !Ref CognitoUserPoolEmailDomainVerifyFunction
Principal: cognito-idp.amazonaws.com
SourceAccount: !Ref AWS::AccountId
SourceArn: !GetAtt CognitoUserPool.Arn
Outputs:
CognitoIdentityPoolId:
Description: Cognito identity pool id.
Value: !Ref CognitoIdentityPool
CognitoUserPoolId:
Description: Cognito user pool id.
Value: !Ref CognitoUserPool
CognitoUserPoolClientId:
Description: Cognito user pool client id.
Value: !Ref CognitoUserPoolClient