-
Notifications
You must be signed in to change notification settings - Fork 2
/
terraform.tfvars.example
30 lines (30 loc) · 1.21 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
environment = "dev"
#zone_prefix = ""
hosted_zone_name = "mydomain.org"
# At least one of ec2_keyname or ec2_public_key must be set
#ec2_keyname = "my-ec2-key"
#ec2_public_key = ""
stack_name = "mystack"
ssh_cidr_blocks = []
# If the user below is empty, Terraform will attempt to
# create it and the required access/secret automatically.
#fcrepo_binary_bucket_username = "iam_user"
#fcrepo_binary_bucket_access_key = "***********"
#fcrepo_binary_bucket_secret_key = "***********"
fcrepo_binary_bucket_username = "iam_user"
fcrepo_binary_bucket_access_key = "***********"
fcrepo_binary_bucket_secret_key = "***********"
# You can use an alternate hostname for the main web interface rather
# than the default of {zone_prefix}{environment}.{hosted_zone_name}
# To do so, you must delegate the domain where the hostname will reside
# to AWS Route53 and specify the zone_id and hostname like below.
#alt_hostname = {
# "my-label" = {
# zone_id = "Z0123456789ABCDEFGHI"
# hostname = "my-alt.domain.org"
# }
# }
tags = {
Creator = "Username"
For = "Avalon Turnkey"
}