-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
57 lines (46 loc) · 788 Bytes
/
Copy pathvariables.tf
File metadata and controls
57 lines (46 loc) · 788 Bytes
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
variable azs {
type = list(string)
}
variable nat_gateway_count {
type = number
default = 0
}
variable internet_gateway_count {
type = number
default = 0
}
variable vpc_id {
description = "vpc_id"
type = string
}
variable name {
description = "name of seperating sunbet network"
type = string
}
variable cidrs {
type = list(string)
}
variable reuse_nat_ips {
type = bool
default = false
}
variable nat_gateway_ids {
type = list(string)
default = []
}
variable internet_gateway_ids {
type = list(string)
default = []
}
variable external_nat_ip_ids {
type = list(string)
default = []
}
variable inbound_acl_rules {
type = list(map(string))
default = [{}]
}
variable outbound_acl_rules {
type = list(map(string))
default = [{}]
}