UNPKG

1.43 kBYAMLView Raw
1<cumulus-deployment-name>:
2 prefix: <prefix>-cumulus # Prefixes created AWS resources
3 prefixNoDash: <Prefix>Cumulus # Prefixes created AWS resources that do not allow hyphens
4
5 apiStage: dev
6
7 vpc:
8 vpcId: '{{VPC_ID}}' # this has to be set in .env
9 subnets:
10 - '{{AWS_SUBNET}}' # this has to be set in .env
11 securityGroup: '{{SECURITY_GROUP}}' # this has to be set in .env
12
13 ecs:
14 instanceType: t2.micro
15 desiredInstances: 0
16 availabilityZone: <subnet-id-zone>
17 amiid: <some-ami-id>
18
19 buckets:
20 internal:
21 name: <prefix>-internal
22 type: internal
23 private:
24 name: <prefix>-private
25 type: private
26 protected:
27 name: <prefix>-protected
28 type: protected
29 public:
30 name: <prefix>-public
31 type: public
32
33 urs_url: https://uat.urs.earthdata.nasa.gov/ # make sure to include the trailing slash
34
35 # if not specified the value of the apigateway backend endpoint is used
36 # api_backend_url: https://apigateway-url-to-api-backend/ #make sure to include the trailing slash
37
38 # if not specified the value of the apigateway dist url is used
39 # api_distribution_url: https://apigateway-url-to-distribution-app/ #make sure to include the trailing slash
40
41 # URS users who should have access to the dashboard application and use the
42 # distribution API to access protected files.
43 users:
44 - username: <user>
45 - username: <user2>