19 lines
377 B
HCL

variable "organization" {
description = "Organization Name"
type = string
}
variable "environment" {
description = "Environment Name"
type = string
}
variable "region" {
description = "Default Region to set"
type = string
}
variable "availability-zone-names" {
description = "List of Availability zone names"
type = list(string)
}