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

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

variable "service_name" {
  description = "Name of service"
  default     = "refresh-aura"
}

variable "application_family" {
  default = "kafka-data-highway"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "AURA_API_CLIENT_ID",
    "AURA_API_CLIENT_SECRET",
  ]
}
