-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
39 lines (32 loc) · 989 Bytes
/
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
variable "tags" {
description = "A mapping of tags to assign to the resource."
type = map(string)
}
variable "availability_zone" {
description = "The AZ for the subnet"
default = null
}
variable "availability_zone_id" {
description = "The AZ ID of the subnet"
default = null
}
variable "cidr_block" {
description = "The CIDR block for the subnet"
}
variable "ipv6_cidr_block" {
description = "The IPv6 network range for the subnet, in CIDR notation"
default = null
}
variable "map_public_ip_on_launch" {
description = "Specify true to indicate that instances launched into the subnet should be assigned a public IP address"
default = false
type = bool
}
variable "assign_ipv6_address_on_creation" {
description = "Specify true to indicate that network interfaces created in the specified subnet should be assigned an IPv6 address"
default = false
type = bool
}
variable "vpc_id" {
description = "The VPC ID"
}