variable "environment" {
  description = "prod, qa or dev"
  default     = "dev"
}

variable "service_name" {
  description = "Name of service"
  default     = "cost-anomaly-detection"
}

variable "application_family" {
  description = "Application family to which this service belongs"
  default     = "devops"
}

variable "subscriber_email" {
  description = "The destination email address"
  default     = "devops_jira@sonymusic-pde.com"
}

variable "cost_threshold_percentage" {
  description = "The percentage threshold for detecting cost anomalies. If the cost deviation exceeds this percentage, an anomaly alert will be triggered."
}

variable "cost_threshold_absolute" {
  description = "The percentage threshold for detecting cost anomalies. If the cost deviation exceeds this fixed amount, an anomaly alert will be triggered."
}

variable "frequency" {
  description = "The frequency that anomaly reports are sent. Valid Values: DAILY | IMMEDIATE | WEEKLY."
  default     = "WEEKLY"
}
