variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "qa"
}

variable "service_name" {
  default = "managed-kafka-fansifter"
}

# @todo change this to Fansifter once we are done and tested.
variable "application_family" {
  default = "kafka-data-highway"
}

variable "additional_tags" {
  type = map(string)
  default = {
    project = "kafka-data-highway"
  }
}

variable "qa_allowed_custom_cidr_blocks" {
  description = "CIDR blocks from which to allow traffic for QA environments"
  type        = list(string)

  default = [
    "192.168.31.0/24",
    "192.168.32.0/24",
    "192.168.33.0/24",
    "192.168.36.0/28",
    "192.168.40.0/22",
    "10.30.0.0/22",
    "10.40.0.0/22",
    "10.180.0.0/20",
  ]
}
