-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env-sample
41 lines (34 loc) · 1.19 KB
/
.env-sample
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
# you probably shouldn't change these
FLASK_APP="opensearch_dashboards_cf_auth_proxy.app:create_app()"
FLASK_ENV=local
# you might change these
SESSION_LIFETIME=600
PORT=8080
AUTH_PROXY_URL="http://localhost:8080/"
REDIS_HOST="localhost"
# you almost certainly should change these
CF_API_URL=https://api.example.cloud.gov/ # make sure to include trailing slash!
DASHBOARD_URL=https://dashboard.example.com
UAA_AUTH_URL=https://login.example.com/oauth/authorize
UAA_BASE_URL=https://uaa.example.com/ # make sure to include trailing slash!
UAA_CLIENT_ID=FEEDABEE
UAA_CLIENT_SECRET=CHANGEME
# get this from ${UAA_BASE_URL}/token_keys
UAA_JWKS='{"keys": [ { "kty":"RSA", "e":"AQAB", "use":"sig", "kid":"key-1", "alg":"RS256", "value":"-----BEGIN PUBLIC KEY-----...-----END PUBLIC KEY-----"},{"kty"...}]}'
SECRET_KEY=changeme
CF_ADMIN_GROUP_NAME="<cf-group-name>"
# only necessary for running e2e tests locally
OPENSEARCH_USER=
OPENSEARCH_PASSWORD=
TEST_USER_1_USERNAME=
TEST_USER_1_PASSWORD=
TEST_USER_1_TOTP_SEED=
TEST_USER_2_USERNAME=
TEST_USER_2_PASSWORD=
TEST_USER_2_TOTP_SEED=
TEST_USER_3_USERNAME=
TEST_USER_3_PASSWORD=
TEST_USER_3_TOTP_SEED=
TEST_USER_4_USERNAME=
TEST_USER_4_PASSWORD=
TEST_USER_4_TOTP_SEED=