-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.hcl
58 lines (58 loc) · 1.37 KB
/
values.hcl
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
locals {
cidr_block = "10.0.0.0/24"
region = "us-east-1"
vpc_name = "IaC VPC"
tags = {
"vpc_name" = "VPC Resource"
"vpc_purpose" = "Testing and Validating resource deployments."
}
enable_dns_support = true
enable_dns_hostnames = true
subnets = [
{
name = "Public Subnet 1"
new_bits = 4
az = "a"
},
{
name = "Public Subnet 2"
new_bits = 4
az = "b"
},
{
name = "Public Subnet 3"
new_bits = 4
az = "c"
},
{
name = "Web Subnet 1"
new_bits = 4
az = "a"
},
{
name = "Web Subnet 2"
new_bits = 4
az = "b"
},
{
name = "Web Subnet 3"
new_bits = 4
az = "c"
},
{
name = "Data Subnet 1"
new_bits = 4
az = "a"
},
{
name = "Data Subnet 2"
new_bits = 4
az = "b"
},
{
name = "Data Subnet 3"
new_bits = 4
az = "c"
}
]
}