File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ The following key/value pairs are used for configurating the extension:
6
6
7
7
| ** Config Name** | ** Description** |
8
8
| ---------------------------------------| ------------------------------------------------------------------------------------------|
9
+ | ` AWS_COGNITO_DISABLED ` | Globally disable auth with Cognito (default=False) |
9
10
| ` AWS_REGION ` | Region the user pool was created |
10
11
| ` AWS_COGNITO_DOMAIN ` | The domain name of the user pool |
11
12
| ` AWS_COGNITO_USER_POOL_ID ` | The ID of the user pool |
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ class Config:
29
29
FLASK_ENV = "TESTING"
30
30
31
31
# Cognito config
32
+ # AWS_COGNITO_DISABLED = True # Can set to turn off auth (e.g. for local testing)
32
33
AWS_REGION = environ ["AWS_REGION" ]
33
34
AWS_COGNITO_USER_POOL_ID = environ ["AWS_COGNITO_USER_POOL_ID" ]
34
35
AWS_COGNITO_DOMAIN = environ ["AWS_COGNITO_DOMAIN" ]
You can’t perform that action at this time.
0 commit comments