-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env_example
52 lines (46 loc) · 1.87 KB
/
.env_example
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
42
43
44
45
46
47
48
49
50
51
52
STACK_NAME="amsk-stac"
STACK_DESCRIPTION="CBERS 4/4A and Amazonia 1 STAC catalog on AWS"
# This is the email of the ingest stack operator and
# will receive alarm notifications
STACK_OPERATOR_EMAIL="[email protected]"
# Set to true for CORS to be enabled in STAC bucket, false to disable
STACK_STAC_BUCKET_ENABLE_CORS=true
# Set to true for public access, false to disable
STACK_STAC_BUCKET_PUBLIC_READ=true
# Set to true if the contents should be pruned whenever there is
# a change in the static Catalog/Collection files
# ATTENTION: IF ENABLED THIS WILL ERASE ALL STAC ITEMS IN
# THE STAC BUCKET WHEN EITHER THE CATALOG AND/OR COLLECTION
# IS UPDATED.
STACK_STAC_BUCKET_PRUNE=false
STACK_BACKUP_QUEUE_RETENTION_DAYS=5
##### Parameters typically switched between dev and prod deployments
#### Development
STACK_STAGE="dev"
STACK_COST_CENTER="amsk-stac-dev"
# Bucket used to write STAC metadata. The bucket will be populated
# with the initial, static catalog/collection structure
STACK_STAC_BUCKET_NAME="amsk-stac-1-0-rc"
# SNS topic arn used to receive notifications for new CBERS4A and AMAZONIA1 quicklooks,
# defaults to the production environment maintained by AMSK
# at the moment of the deployment
# STACK_CB4A_AM1_TOPIC="arn:****"
# Set to true for creating resources needed to implement
# the STAC API, false to disable
STACK_ENABLE_API=true
STACK_ES_INSTANCE_TYPE="t3.small.elasticsearch"
STACK_ES_VOLUME_SIZE=15
STACK_ES_DATA_NODES=1
# A dictionary mapping the COG pds bucket to the associated
# metadata PDS bucket - may be the same
STACK_COG_PDS_META_PDS='{
"cbers-pds": "cbers-meta-pds",
"amazonia-pds": "amazonia-meta-pds"
}'
# See https://github.com/fredliporace/cbers-2-stac/issues/88
STACK_DEPLOY_STATIC_CATALOG_STRUCTURE=true
#### Production
# STACK_STAGE="prod"
# See DEVELOPMENT section above
# Additional environment variables:
# STACK_ADDITIONAL_ENV='{"key":"value"}'