-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcognito.yml
40 lines (37 loc) · 972 Bytes
/
cognito.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
40
AWSTemplateFormatVersion: '2010-09-09'
Description: Cognito User Pool for backop-backend
Resources:
UserPool:
Type: AWS::Cognito::UserPool
Properties:
UserPoolName: BackopUserPool
AutoVerifiedAttributes:
- email
Policies:
PasswordPolicy:
MinimumLength: 8
RequireLowercase: true
RequireNumbers: true
RequireSymbols: true
RequireUppercase: true
UserPoolClient:
Type: AWS::Cognito::UserPoolClient
Properties:
ClientName: BackopUserPoolClient
UserPoolId: !Ref UserPool
GenerateSecret: false
ExplicitAuthFlows:
- ADMIN_NO_SRP_AUTH
- USER_PASSWORD_AUTH
AccessTokenValidity: 24
IdTokenValidity: 24
TokenValidityUnits:
AccessToken: hours
IdToken: hours
SupportedIdentityProviders:
- COGNITO
Outputs:
UserPool:
Value: !Ref UserPool
UserPoolClient:
Value: !Ref UserPoolClient