integration/basic/main.tf (22 lines of code) (raw):
terraform {}
variable "docker_ports" {
type = list(object({
internal = number
external = number
protocol = string
}))
default = [
{
internal = 8300
external = 8300
protocol = "tcp"
}
]
}
variable "availability_zone_names" {
type = list(string)
default = ["us-west-1a"]
}
variable "image_id" {
type = string
}