-
Notifications
You must be signed in to change notification settings - Fork 17
/
cognito-template.yaml
279 lines (276 loc) · 8.68 KB
/
cognito-template.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
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: The Cognito settings for the ALIS application.
Parameters:
AlisAppDomain:
Type: 'AWS::SSM::Parameter::Value<String>'
PrivateChainAwsAccessKey:
Type: 'AWS::SSM::Parameter::Value<String>'
PrivateChainAwsSecretAccessKey:
Type: 'AWS::SSM::Parameter::Value<String>'
PrivateChainExecuteApiHost:
Type: 'AWS::SSM::Parameter::Value<String>'
BetaModeFlag:
Type: 'AWS::SSM::Parameter::Value<String>'
UsersTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
BetaUsersTableName:
Type: 'AWS::SSM::Parameter::Value<String>'
ExternalProviderLoginMark:
Type: 'AWS::SSM::Parameter::Value<String>'
Globals:
Function:
Runtime: python3.9
Timeout: 15
MemorySize: 256
Environment:
Variables:
DOMAIN: !Ref AlisAppDomain
PRIVATE_CHAIN_AWS_ACCESS_KEY: !Ref PrivateChainAwsAccessKey
PRIVATE_CHAIN_AWS_SECRET_ACCESS_KEY: !Ref PrivateChainAwsSecretAccessKey
PRIVATE_CHAIN_EXECUTE_API_HOST: !Ref PrivateChainExecuteApiHost
BETA_MODE_FLAG: !Ref BetaModeFlag
USERS_TABLE_NAME: !Ref UsersTableName
BETA_USERS_TABLE_NAME: !Ref BetaUsersTableName
EXTERNAL_PROVIDER_LOGIN_MARK: !Ref ExternalProviderLoginMark
Resources:
SNSRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Principal:
Service:
- "cognito-idp.amazonaws.com"
Action:
- "sts:AssumeRole"
Policies:
- PolicyName: "CognitoSNSPolicy"
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Action: "sns:publish"
Resource: "*"
LambdaRole:
Type: "AWS::IAM::Role"
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: "Allow"
Principal:
Service:
- "lambda.amazonaws.com"
- "cognito-idp.amazonaws.com"
Action:
- "sts:AssumeRole"
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonDynamoDBFullAccess
- arn:aws:iam::aws:policy/CloudWatchLogsFullAccess
- arn:aws:iam::aws:policy/AmazonS3FullAccess
- arn:aws:iam::aws:policy/AmazonCognitoPowerUser
UserPool:
Type: AWS::Cognito::UserPool
Properties:
AdminCreateUserConfig:
AllowAdminCreateUserOnly: false
UnusedAccountValidityDays: 7
AliasAttributes:
- email
- phone_number
AutoVerifiedAttributes:
- email
EmailVerificationMessage: "Your verification code is {####}."
EmailVerificationSubject: "Your verification code"
LambdaConfig:
PreSignUp: !GetAtt CognitoTriggerPreSignUp.Arn
CustomMessage: !GetAtt CognitoTriggerCustomMessage.Arn
PostConfirmation: !GetAtt CognitoTriggerPostConfirmation.Arn
MfaConfiguration: "OPTIONAL"
Policies:
PasswordPolicy:
MinimumLength: 8
RequireLowercase: false
RequireNumbers: false
RequireSymbols: false
RequireUppercase: false
UserPoolName:
Ref: AWS::StackName
Schema:
- AttributeDataType: "String"
DeveloperOnlyAttribute: false
Mutable: true
Name: "email"
StringAttributeConstraints:
MaxLength: "2048"
MinLength: "0"
Required: true
- AttributeDataType: "String"
DeveloperOnlyAttribute: false
Mutable: true
Name: "phone_number"
StringAttributeConstraints:
MaxLength: "2048"
MinLength: "0"
Required: false
- AttributeDataType: "String"
DeveloperOnlyAttribute: false
Mutable: true
Name: "private_eth_address"
StringAttributeConstraints:
MaxLength: "42"
MinLength: "42"
Required: false
SmsConfiguration:
ExternalId: !Join
- ''
- - 'external-'
- !Ref "AWS::StackName"
SnsCallerArn: !GetAtt SNSRole.Arn
SmsAuthenticationMessage: "Your authentication code is {####}."
SmsVerificationMessage: "Your verification code is {####}."
UserPoolClient:
Type: AWS::Cognito::UserPoolClient
Properties:
ClientName: JavaScriptClient
ExplicitAuthFlows:
- ADMIN_NO_SRP_AUTH
GenerateSecret: false
UserPoolId: !Ref UserPool
ReadAttributes:
- email
- email_verified
- phone_number
- phone_number_verified
- custom:private_eth_address
WriteAttributes:
- email
- phone_number
IdentityPool:
Type: AWS::Cognito::IdentityPool
Properties:
IdentityPoolName: !Ref "AWS::StackName"
CognitoIdentityProviders:
- ClientId: !Ref UserPoolClient
ProviderName:
Fn::Join:
- ""
- - cognito-idp.
- Ref: AWS::Region
- .amazonaws.com/
- Ref: UserPool
AllowUnauthenticatedIdentities: false
UnauthenticatedPolicy:
Type: AWS::IAM::ManagedPolicy
Properties:
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- mobileanalytics:PutEvents
- cognito-sync:*
Resource:
- "*"
UnauthenticatedRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action: "sts:AssumeRoleWithWebIdentity"
Principal:
Federated: cognito-identity.amazonaws.com
Condition:
StringEquals:
"cognito-identity.amazonaws.com:aud": !Ref IdentityPool
ForAnyValue:StringLike:
"cognito-identity.amazonaws.com:amr": unauthenticated
ManagedPolicyArns:
- Ref: UnauthenticatedPolicy
AuthenticatedPolicy:
Type: AWS::IAM::ManagedPolicy
Properties:
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action:
- mobileanalytics:PutEvents
- cognito-sync:*
- cognito-identity:*
Resource:
- "*"
AuthenticatedRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action: "sts:AssumeRoleWithWebIdentity"
Principal:
Federated: cognito-identity.amazonaws.com
Condition:
StringEquals:
"cognito-identity.amazonaws.com:aud": !Ref IdentityPool
ForAnyValue:StringLike:
"cognito-identity.amazonaws.com:amr": authenticated
ManagedPolicyArns:
- Ref: AuthenticatedPolicy
RoleAttachment:
Type: AWS::Cognito::IdentityPoolRoleAttachment
Properties:
IdentityPoolId: !Ref IdentityPool
Roles:
unauthenticated:
Fn::GetAtt:
- UnauthenticatedRole
- Arn
authenticated:
Fn::GetAtt:
- AuthenticatedRole
- Arn
LambdaInvocationPermissionCognitoTriggerPreSignUp:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !GetAtt CognitoTriggerPreSignUp.Arn
Principal: cognito-idp.amazonaws.com
SourceArn: !GetAtt UserPool.Arn
LambdaInvocationPermissionCognitoTriggerCustomMessage:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !GetAtt CognitoTriggerCustomMessage.Arn
Principal: cognito-idp.amazonaws.com
SourceArn: !GetAtt UserPool.Arn
LambdaInvocationPermissionCognitoTriggerPostConfirmation:
Type: AWS::Lambda::Permission
Properties:
Action: lambda:InvokeFunction
FunctionName: !GetAtt CognitoTriggerPostConfirmation.Arn
Principal: cognito-idp.amazonaws.com
SourceArn: !GetAtt UserPool.Arn
CognitoTriggerPreSignUp:
Type: AWS::Serverless::Function
Properties:
Handler: handler.lambda_handler
Role: !GetAtt LambdaRole.Arn
CodeUri: ./deploy/cognito_trigger_presignup.zip
CognitoTriggerCustomMessage:
Type: AWS::Serverless::Function
Properties:
Handler: handler.lambda_handler
Role: !GetAtt LambdaRole.Arn
CodeUri: ./deploy/cognito_trigger_custommessage.zip
CognitoTriggerPostConfirmation:
Type: AWS::Serverless::Function
Properties:
Handler: handler.lambda_handler
Role: !GetAtt LambdaRole.Arn
CodeUri: ./deploy/cognito_trigger_postconfirmation.zip