This commit is contained in:
Tommy Parnell
2017-02-07 07:15:34 -05:00
commit 77e1e104c0
9 changed files with 269 additions and 0 deletions

42
variables.tf Normal file
View File

@@ -0,0 +1,42 @@
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"
}