-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
44 lines (43 loc) · 820 Bytes
/
variables.tf
File metadata and controls
44 lines (43 loc) · 820 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
# variables.tf
variable "region" {
default = "ap-southeast-1"
}
variable "availabilityZone" {
default = "ap-southeast-1a"
}
variable "availabilityZoneWindows" {
default = "ap-southeast-1b"
}
variable "instanceTenancy" {
default = "default"
}
variable "dnsSupport" {
default = true
}
variable "dnsHostNames" {
default = true
}
variable "vpcCIDRblock" {
default = "10.0.0.0/16"
}
variable "subnetCIDRblock" {
default = "10.0.1.0/24"
}
variable "subnetCIDRblockWindows" {
default = "10.0.2.0/24"
}
variable "destinationCIDRblock" {
default = "0.0.0.0/0"
}
variable "ingressCIDRblock" {
type = list
default = [ "0.0.0.0/0" ]
}
variable "egressCIDRblock" {
type = list
default = [ "0.0.0.0/0" ]
}
variable "mapPublicIP" {
default = true
}
# end of variables.tf