variable "aws_region" {
  default     = "us-east-1"
  description = "Name of a region"
}

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

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

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

variable "team_name" {
  default = "content-creation-management"
}

variable "snowflake_account" {
  default = "delphi.us-east-1"
}

variable "snowflake_role" {
  default = "QA_OWS_PRODUCT_PHYSICAL"
}

variable "snowflake_user" {
  default = "QA_OWS_PRODUCT_PHYSICAL"
}

variable "snowflake_warehouse" {
  default = "QA_OWS_WAREHOUSE"
}

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

variable "slack_alert_channel" {
  description = "Slack channels for all DD alerts and build notifications"
  default     = "@slack-knr-alerts"
}
