variable "prefix" { description = "Prefix for Instance Names" type = string } variable "splunk_legacy_cidr" { description = "The legacy CIDR block(s)" default = [] type = list(string) } variable "azs" { type = list(string) } variable "subnets" { type = list(string) } variable "vpc_id" { type = string } variable "vpc_cidr" { type = string } variable "tags" { description = "Tags to add to the resource (in addition to global standard tags)" type = map(any) default = {} } variable "instance_type" { type = string default = "t3a.micro" } variable "reverse_enabled" { description = "Whether to create the reverse DNS entry." type = bool default = true }