-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcognito_userpool.yml
39 lines (38 loc) · 1.05 KB
/
cognito_userpool.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
AWSTemplateFormatVersion: "2010-09-09"
Resources:
CognitoUserPool:
Type: AWS::Cognito::UserPool
Properties:
AutoVerifiedAttributes:
- email
Schema:
- Name: email
Required: True
UserPoolName: ServerlessToDoUserPool
Policies:
PasswordPolicy:
MinimumLength: 8
RequireLowercase: True
RequireUppercase: True
RequireNumbers: False
RequireSymbols: False
AdminCreateUserConfig:
AllowAdminCreateUserOnly: False
CognitoUserPoolClient:
Type: AWS::Cognito::UserPoolClient
Properties:
ClientName: ToDoAppPoolClient
UserPoolId: !Ref CognitoUserPool
GenerateSecret: False
ExplicitAuthFlows:
- ALLOW_USER_PASSWORD_AUTH
- ALLOW_ADMIN_USER_PASSWORD_AUTH
- ALLOW_USER_SRP_AUTH
- ALLOW_REFRESH_TOKEN_AUTH
Outputs:
CognitoUserPoolId:
Value: !Ref CognitoUserPool
CognitoUserPoolArn:
Value: !GetAtt CognitoUserPool.Arn
CognitoUserPoolClientId:
Value: !Ref CognitoUserPoolClient