Files
terraform-ecs/variables.tf
Tommy Parnell 77e1e104c0 init
2017-02-07 07:15:34 -05:00

42 lines
637 B
HCL

variable "SubnetPublic1a" {
type = "string"
}
variable "SubnetPublic1b" {
type = "string"
}
variable "SubnetPublic1c" {
type = "string"
}
variable "SubnetPrivate1a" {
type = "string"
}
variable "SubnetPrivate1b" {
type = "string"
}
variable "SubnetPrivate1c" {
type = "string"
}
variable "VpcId"{
type = "string"
default = ""
}
variable "account_id"{
type = "string"
default = ""
}
variable "region"{
type = "string"
default = "eu-west-1"
}
variable "container_name"{
type = "string"
}
variable "container_port"{
type = "string"
}
variable "lb_port"{
type = "string"
}