variable "environment" {
  default = "qa"
}

variable "aws_region" {
  default = "us-east-1"
}

variable "service_name" {
  default = "art-relations"
}

variable "application_family" {
  default = "devops"
}

variable "rds_instance_count" {
  default = 1
}

variable "secrets_manager_secret_names" {
  type        = list(string)
  description = "List of secret names to create in Secrets Manager"
  default     = ["ows-track"]
}
