-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathterraform.tfvars.example
68 lines (54 loc) · 1.16 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
application_name = "My Chef Automate"
create_chef_ha = false
create_chef_server = true
chef_backend = {
count = 3
version = "2.2.0"
}
chef_frontend = {
count = 3
version = "14.0.58"
}
chef_clients = {
count = 3
version = "16.5.77"
}
effortless_clients = {
count = 3
origin = "myorigin"
effortless_audit = "my-linux-audit"
effortless_config = "my-linux-config"
}
default_tags = {
X-Dept = "My Dept"
X-Contact = "My Name"
X-Project = "Demo"
X-Production = false
X-TTL = 168
X-Environment = "Test"
X-Application = "Chef Automate"
}
vpc = {
cidr_block = "10.0.0.0/24"
}
az_subnets = {
eu-west-1a = "10.0.0.0/27"
eu-west-1b = "10.0.0.32/27"
eu-west-1c = "10.0.0.64/27"
}
ssh_whitelist_cidrs = ["0.0.0.0/0"]
domain = "example.com"
hostnames = {
chef_server = "chef"
automate_server = "automate"
chef_client = "node"
effortless_client = "effortless-node"
backend = "chef-be"
frontend = "chef-fe"
}
instance_keys = {
key_name = "ssh-key"
key_file = "~/.ssh/ssh-key"
}
log_bucket = "chef-logs"
validator_key_path = "/my_chef/test/"