blockscout-terraform/group_vars/all.yml.example

21 lines
1007 B
Plaintext
Raw Normal View History

# System variables
ansible_python_interpreter: "/usr/bin/python3"
2019-03-20 13:22:53 -07:00
# Common variables
2019-04-23 17:02:33 -07:00
## Credentials to connect to AWS. Either keypair or CLI profile name should be specified. If nothing is specified, the default AWS keypair is used. Region must be specified in all the cases.
#aws_access_key: ""
#aws_secret_key: ""
#aws_profile: ""
aws_region: "us-east-1"
## If set to true backend will be uploaded and stored at S3 bucket, so you can easily manage your deployment from any machine. It is highly recommended to do not change this variable
backend: true
2019-05-15 04:15:48 -07:00
## If this is set to true along with backend variable, this config file/the log output will be saved to s3 bucket. Please, make sure to name the config file "all.yml". Otherwise, no upload will be performed
upload_config_to_s3: true
2019-05-07 06:38:20 -07:00
upload_debug_info_to_s3: true
2019-03-20 13:22:53 -07:00
## The bucket and dynamodb_table variables will be used only when backend variable is set to true
## Name of the bucket where TF state files will be stored
2019-03-28 02:32:15 -07:00
bucket: "poa-terraform-state"