-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.sample-env
executable file
·41 lines (33 loc) · 2.03 KB
/
.sample-env
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
# https://nextjs.org/docs/pages/building-your-application/configuring/environment-variables
# Next.js will load these automatically. We use dotenv-flow to load them for mocha
# Copy this file to .env.local and modify these to your services
# AWS_PROFILE=default
PEWPEWCONTROLLER_UNITTESTS_S3_BUCKET_NAME="my-test-service"
PEWPEWCONTROLLER_UNITTESTS_S3_BUCKET_URL="https://my-test-service.s3.amazonaws.com"
PEWPEWCONTROLLER_UNITTESTS_S3_KEYSPACE_PREFIX="pewpewcontroller-unittests-s3/"
PEWPEWCONTROLLER_UNITTESTS_S3_REGION_ENDPOINT="s3-us-east-1.amazonaws.com"
ADDITIONAL_TAGS_ON_ALL="application=pewpewcontroller"
APPLICATION_NAME=pewpewcontroller
AGENT_ENV="unittests"
AGENT_DESC="c5n.large"
PEWPEWAGENT_UNITTESTS_SQS_SCALE_OUT_QUEUE_URL="https://sqs.us-east-1.amazonaws.com/my-account/pewpewagent-unittests-sqs-scale-out"
PEWPEWAGENT_UNITTESTS_SQS_SCALE_IN_QUEUE_URL="https://sqs.us-east-1.amazonaws.com/my-account/pewpewagent-unittests-sqs-scale-in"
PEWPEWCONTROLLER_UNITTESTS_SQS_COMMUNICATION_QUEUE_URL="https://sqs.us-east-1.amazonaws.com/my-account/pewpewcontroller-unittests-sqs-communication"
# encryption key name in secrets-manager
SECRETS_ENCRYPTION_KEY_NAME="pewpew-encrypt-key"
# OpenId client secret name in secrets-manager
SECRETS_OPENID_CLIENT_SECRET_NAME="pewpew-openid-secret"
# Optional local override for the encryption key value.
# variable name is the encryption key name in caps/underscores with _OVERRIDE at the end
# You can generate one with `openssl rand -hex 16`
# PEWPEW_ENCRYPT_KEY_OVERRIDE="<local value to not use secrets-manager>"
# Optional local override for the client secret value.
# variable name is the client secret name in caps/underscores with _OVERRIDE at the end
# PEWPEW_OPENID_SECRET_OVERRIDE="<local value to not use secrets-manager>"
# OpenId Client Id
OPENID_CLIENT_ID="my-client-id"
# OpenId Service host
OPENID_HOST="my.login.service.com"
OPENID_PERMISSIONS_READONLY="<openId profile for read_only>"
OPENID_PERMISSIONS_USER="<openId profile for user>"
OPENID_PERMISSIONS_ADMIN="<openId profile for administrator>"