forked from star3am/hashiqube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
124 lines (123 loc) · 2.71 KB
/
variables.tf
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
variable "ec2_instance" {
type = list(
object({
ami_id = string
instance_type = string
az = string
set_public_ip = bool
subnet_id = string
security_group = list(string)
tags = map(string)
ebs_disks = list(
object({
disksize = number
encryption = bool
disktype = string
devicename = string
}))
})
)
default = [
{
ami_id = "ami-02e8cbf7681c3ae51"
instance_type = "t1.micro"
az = "ap-southeast-1"
set_public_ip = false
subnet_id = "subnet-07e73ebcae662e4a3"
security_group = [
"dev-node"
]
tags = {
Name = "dev-node"
Environment = "dev"
}
ebs_disks = [
{
disksize = 128
encryption = true
disktype = "gp3"
devicename = "/dev/sdg"
},
{
disksize = 64
encryption = false
disktype = "gp2"
devicename = "/dev/sdf"
}
]
},
{
ami_id = "ami-02e8cbf7681c3ae51"
instance_type = "t2.micro"
az = "ap-southeast-2"
set_public_ip = false
subnet_id = "subnet-3ebcae667e72e4a3"
security_group = [
"dev-node"
]
tags = {
Name = "dev-node"
Environment = "dev"
}
ebs_disks = [
{
disksize = 128
encryption = true
disktype = "gp3"
devicename = "/dev/sdf"
},
{
disksize = 64
encryption = false
disktype = "gp2"
devicename = "/dev/sdg"
}
]
},
{
ami_id = "ami-02e8cbf7681c3ae51"
instance_type = "t3.micro"
az = "ap-southeast-3"
set_public_ip = false
subnet_id = "subnet-07e7662e4a3ebcae"
security_group = [
"dev-node"
]
tags = {
Name = "dev-node"
Environment = "dev"
}
ebs_disks = [
{
disksize = 128
encryption = true
disktype = "gp3"
devicename = "/dev/sdf"
},
{
disksize = 64
encryption = false
disktype = "gp2"
devicename = "/dev/sdg"
}
]
}
]
}
variable "tunnels" {
type = list(any)
default = [
{
host = "*.google.com"
type = "host"
address = "8.8.8.8/32"
description = "google description"
},
{
host = "*.example.com"
type = "address"
address = "0.0.0.0/0"
description = "example description"
}
]
}