variable "ny_on_call_users" {
  type    = list(string)
  default = [
    "diego.salazar@sonymusic-pde.com",
    "michael.rojas@sonymusic-pde.com",
    "mbalan@sonymusic-pde.com",
    "jonathan.raysor@sonymusic-pde.com",
  ]
}

variable "uk_on_call_users" {
  type    = list(string)
  default = [
    "anorton@sonymusic-pde.com",
    "junye.zhang@sonymusic-pde.com",
    "kgreenidge@sonymusic-pde.com",
    "menger@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 = [
    "george.theka@sonymusic-pde.com",
    "jviletto@sonymusic-pde.com",
    "mthomas@sonymusic-pde.com",
    "tdenkinger@sonymusic-pde.com",
  ]
}

variable "teams" {
  type        = list(string)
  description = "Teams to include in the on-call schedule and escalation policy filters"
  default = [
    "abacus",
    "accounting",
    "collaborators",
    "tax-and-payments",
  ]
}

variable "restriction_days" {
  type        = list(string)
  description = "Days of the week when on-call restrictions apply"
  default = [
    "sunday",
    "monday",
    "tuesday",
    "wednesday",
    "thursday",
    "friday",
    "saturday",
  ]
}
