-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathenvironment.integration
29 lines (27 loc) · 1.84 KB
/
environment.integration
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
# HCA DSS environment variables: integration deployment
set -a
DSS_DEPLOYMENT_STAGE=integration
DSS_S3_BUCKET=$DSS_S3_BUCKET_INTEGRATION
DSS_GS_BUCKET=$DSS_GS_BUCKET_INTEGRATION
DSS_S3_CHECKOUT_BUCKET=$DSS_S3_CHECKOUT_BUCKET_INTEGRATION
DSS_GS_CHECKOUT_BUCKET=$DSS_GS_CHECKOUT_BUCKET_INTEGRATION
DSS_ES_DOMAIN="dss-index-$DSS_DEPLOYMENT_STAGE"
DCP_DOMAIN=${DSS_DEPLOYMENT_STAGE}.data.humancellatlas.org
# TODO remove https://dev.data.humancellatlas.org/ from OIDC_AUDIENCE
OIDC_AUDIENCE=https://dev.data.humancellatlas.org/,https://${DCP_DOMAIN}/
API_DOMAIN_NAME="dss.${DCP_DOMAIN}"
DSS_GCP_SERVICE_ACCOUNT_NAME="org-humancellatlas-integration"
DSS_ZONE_NAME="integration.data.humancellatlas.org."
ACM_CERTIFICATE_IDENTIFIER="390e82ea-a684-49f4-a4b3-857f22cee874"
DSS_CHECKOUT_BUCKET_OBJECT_VIEWERS="serviceAccount:[email protected],serviceAccount:[email protected],serviceAccount:caas-prod-account-for-int@broad-dsde-mint-integration.iam.gserviceaccount.com,serviceAccount:cromwell-metadata-uploader@broad-dsde-mint-integration.iam.gserviceaccount.com,serviceAccount:bluebox-subscription-manager@broad-dsde-mint-integration.iam.gserviceaccount.com"
DSS_TERRAFORM_BACKEND_BUCKET_TEMPLATE="org-humancellatlas-dss-{account_id}-${DSS_DEPLOYMENT_STAGE}-terraform"
DSS_FLASHFLOOD_BUCKET=$DSS_FLASHFLOOD_BUCKET_INTEGRATION
AUTH_URL=https://auth.integration.data.humancellatlas.org
DSS_AWS_FLASHFLOOD_PREFIX_READ=$DSS_AWS_FLASHFLOOD_PREFIX_READ_INTEGRATION
DSS_AWS_FLASHFLOOD_PREFIX_WRITE=$DSS_AWS_FLASHFLOOD_PREFIX_WRITE_INTEGRATION
DSS_GCP_FLASHFLOOD_PREFIX_READ=$DSS_GCP_FLASHFLOOD_PREFIX_READ_INTEGRATION
DSS_GCP_FLASHFLOOD_PREFIX_WRITE=$DSS_GCP_FLASHFLOOD_PREFIX_WRITE_INTEGRATION
set +a
if [[ -f "${DSS_HOME}/environment.integration.local" ]]; then
source "${DSS_HOME}/environment.integration.local"
fi