variable "instance_name" { description = "Hostname, DNS entry, etc." type = string } variable "instance_count" { # This is an unusual way to do this. TODO. description = "Number of servers" type = list(string) default = ["1", "2", "3"] } variable "azs" { type = list(string) } variable "subnets" { type = list(string) } variable "vpc_id" { type = string } variable "tags" { description = "Tags to add to the resource (in addition to global standard tags)" type = map(any) default = {} } variable "instance_tags" { description = "List of tags for the instances only." type = list(map(string)) default = [{}, {}, {}] } variable "reverse_enabled" { description = "Whether to create the reverse DNS entry." type = bool default = true }