variable "aws_region" {
  type        = string
  description = "AWS region"
  default     = "eu-central-1"
}

variable "application_family" {
  type        = string
  description = "The name of the application family."
  default     = "dx"
}

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

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "dx-ui-service"
}

variable "notification_endpoints" {
  type        = string
  description = "Endpoints for datadog notifications"
  default     = "@slack-dx-alerts"
}

variable "team_name" {
  type        = string
  description = "The name of the Datadog team that owns this service."
  default     = "dx"
}

variable "domain_name" {
  default = "smedx.net"
}

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