variable "splunk_customer_cidrs" { description = "List of customer's cidrs that can access the SH" type = list(string) } variable "instance_name" { description = "[Optional] Override the Instance Name" type = string default = "" } variable "prefix" { description = "Prefix for Instance Names" type = string } variable "azs" { type = list(string) } variable "splunk_volume_sizes" { type = map(map(number)) } variable "public_subnets" { type = list(string) } variable "private_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 default = { } } variable "instance_type" { type = string default = "t3a.micro" } variable "reverse_enabled" { description = "Whether to create the reverse DNS entry." type = bool default = true } variable "portal_test_whitelist" { type = list } variable "trusted_ips" { type = list(string) } variable "proxy" { type = string } variable "salt_master" { type = string } variable "cidr_map" { type = map } variable "dns_info" { type = map } variable "standard_tags" { type = map } variable "environment" { type = string } variable "aws_region" { type = string } variable "aws_partition" { type = string } variable "aws_partition_alias" { type = string } variable "aws_account_id" { type = string } variable "common_services_account" { type = string } variable "instance_termination_protection" { type = bool } variable "splunk_prefix" { type = string }