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

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

variable "service_name" {
  default = "ows-lyrics"
}

variable "application_family" {
  default = "product-builder"
}

variable "secrets_manager_secret_names" {
  type = list(string)
  default = [
    "AR_MYSQL_PASSWORD",
    "AUTOMATION_QA_DB_PASS",
  ]
}

variable "notification_endpoints" {
  default = ""
}
