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

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

variable "service_name" {
  type        = string
  description = "The name of the service"
  default     = "ows-assets"
}

variable "application_family" {
  default = "assets"
}

variable "notification_endpoints" {
  type        = string
  description = "Endpoints for escalation alerts. Can be email, slack, pagerduty, etc"
  default     = "@slack-content-delivery-and-asset-mgmt-alerts"
}

