forked from nasa/cumulus-orca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.tfvars.example
70 lines (49 loc) · 2.58 KB
/
terraform.tfvars.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
## =============================================================================
## CUMULUS Variables currently in terraform.tfvars
## =============================================================================
## Variables obtained by Cumulus deployment
## Should exist in https://github.com/nasa/cumulus-template-deploy/blob/master/cumulus-tf/variables.tf
## REQUIRED to be set in your cumulus-tf/terraform.tfvars file
# buckets - Bucket map that includes buckets of type "orca".
# lambda_subnet_ids - Subnet IDs where the ORCA resources reside.
# permissions_boundary_arn - AWS ARN for the permission boundary.
# prefix - Deployment prefix used to uniquely name resources.
# system_bucket - S3 bucket designated as the system bucket.
# vpc_id - AWS ID of the VPC being deployed to.
# workflow_config - Cumulus workflow object deployment ARN information
## OPTIONAL Cumulus variables that can be set in your cumulus-tf/terraform.tfvars file.
## ORCA default settings shown.
# tags = {}
## =============================================================================
## ORCA Variables
## =============================================================================
## REQUIRED TO BE SET
## -----------------------------------------------------------------------------
## ORCA application database user password.
database_app_user_pw =
## Default ORCA S3 Glacier bucket to use
orca_default_bucket =
## PostgreSQL database (root) user password
postgres_user_pw =
## OPTIONAL VARIABLES - ORCA default settings shown.
## -----------------------------------------------------------------------------
## Database port that PostgreSQL traffic will be allowed on.
# database_port = 5432
## Amount of memory in MB the ORCA copy_to_glacier lambda can use at runtime.
# orca_ingest_lambda_memory_size = 2240
## Timeout in number of seconds for ORCA copy_to_glacier lambda.
# orca_ingest_lambda_timeout = 600
## List of bucket names that ORCA has permissions to restore data to.
# orca_recovery_buckets = []
## Specifies object key name prefix by the Glacier Bucket trigger.
# orca_recovery_complete_filter_prefix = ""
## Number of days a recovered file will remain available for copy.
# orca_recovery_expiration_days = 5
## Amount of memory in MB the ORCA recovery lambda can use at runtime.
# orca_recovery_lambda_memory_size = 128
## Timeout in number of seconds for ORCA recovery lambdas.
# orca_recovery_lambda_timeout = 300
## Maximum number of retries of a recovery failure before giving up.
# orca_recovery_retry_limit = 3
## Number of seconds to wait between recovery failure retries.
# orca_recovery_retry_interval = 1