-
Notifications
You must be signed in to change notification settings - Fork 5
/
terraform.tfvars.example
45 lines (37 loc) · 1.62 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
##############################################################################################################
# Define Common Tags - these tags get applied to every EC2 instance that gets spun up via this terraform plan.
# NOTE: The contact and project tags are also used to generate DNS records. Example DNS record with the data
# below: joeuser-atlantis-automate.<your domain here>. Keep DNS records in mind when setting these
# values (ie, don't use underscores or ampersands as those will break DNS).
##############################################################################################################
tag_application = "demo"
tag_contact = "joeuser"
tag_customer = "Acme"
tag_dept = "sales"
tag_production = "No"
tag_project = "atlantis"
tag_sleep = "true"
tag_ttl = "2"
# Define Chef User
email = "[email protected]"
first_name = "Joe"
last_name = "User"
username = "joe"
# Define Key Name - This is the name of your key at AWS.
key_name = "joe_users_key"
# Instance Key - The local copy of your key file. This defaults to ~/.ssh/id_rsa if left unset.
instance_key = "~/.ssh/joe_users_key"
# Define Sample Node Counts - Leaving these set to 0 will prevent the sample nodes from spinning up.
centos_sample_node_count = 0
ubuntu_sample_node_count = 0
rhel_sample_node_count = 0
sles_sample_node_count = 0
# Define A2 License
# Only place a valid A2 license in this space. If you don't have one or don't want to use it, leave this commented out.
# a2_license = ""
# Harvest .pem key file
harvest_key = true
# Update knife_override.rb
update_knife_override = true
# Provision Habitat BLDR server
provision_bldr = false