2017-05-24 22:36:33 +00:00
|
|
|
variable "name" {
|
2017-10-18 17:52:09 +00:00
|
|
|
type = "string"
|
|
|
|
|
description = "Name prefix to use for networking resources"
|
2017-05-24 22:36:33 +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-05-24 22:36:33 +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-05-24 22:36:33 +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-05-24 22:36:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "subnet_cidr_block" {
|
2017-10-18 17:52:09 +00:00
|
|
|
type = "string"
|
|
|
|
|
description = "CIDR block (in VPC CIDR block) to use for new subnet"
|
2017-05-24 22:36:33 +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-05-24 22:36:33 +00:00
|
|
|
}
|