2017-09-25 04:04:11 +00:00
|
|
|
variable "name" {
|
2017-10-18 17:52:09 +00:00
|
|
|
type = "string"
|
|
|
|
|
description = "Name prefix to use for networking resources"
|
2017-09-25 04:04:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "vpc_cidr_block" {
|
2017-10-18 17:52:09 +00:00
|
|
|
type = "string"
|
|
|
|
|
description = "CIDR block to use for new VPC"
|
2017-09-25 04:04:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "vpc_dns_hostnames" {
|
2017-10-18 17:52:09 +00:00
|
|
|
type = "string"
|
|
|
|
|
description = "True/False to enable DNS hostnames in new VPC"
|
2017-09-25 04:04:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "vpc_dns_support" {
|
2017-10-18 17:52:09 +00:00
|
|
|
type = "string"
|
|
|
|
|
description = "True/False to enable DNS support in new VPC"
|
2017-09-25 04:04:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "subnet_map_pub_ip" {
|
2017-10-18 17:52:09 +00:00
|
|
|
type = "string"
|
|
|
|
|
description = "True/False to map public IP addresses on launch"
|
2017-09-25 04:04:11 +00:00
|
|
|
}
|