variable "region" {
  default     = "us-east-1"
  description = "All elements of the state machine execution flow have to be placed in the same region."
}

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

variable "service_name" {
  default = "ows-product-workflow"
}

variable "service_version" {
  default = "1.0.0"
}

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

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

variable "team" {
  description = "Datadog team slug"
  default     = "content-creation-management"
}
