variable "layer_1_on_call_users" {
  type = list(string)
  default = [
    "anevrekar@sonymusic-pde.com"
  ]
}

variable "layer_2_on_call_users" {
  type = list(string)
  default = [
    "rhea.lieberman@sonymusic-pde.com",
    "mhirth@sonymusic-pde.com",
  ]
}

variable "escalation_only_users" {
  type        = list(string)
  description = "Users who should be included in the escalation policy but not the on-call rotation"
  default = [
    "mthomas@sonymusic-pde.com",
    "tmartino@sonymusic-pde.com",
  ]
}

variable "layer_1_restriction_days" {
  type = list(string)
  default = [
    "monday",
    "tuesday",
    "wednesday",
    "thursday",
    "friday",
  ]
}

variable "layer_2_restriction_days" {
  type = list(string)
  default = [
    "monday",
    "tuesday",
    "wednesday",
    "thursday",
    "friday",
  ]
}
