variable "team_handle" {
  type        = string
  description = "Handle for team"
}

variable "team_name" {
  type        = string
  description = "Descriptive name for team"
}

variable "team_members" {
  type        = set(string)
  description = "Set of team member usernames"
  default     = []
}

variable "team_slack_channel" {
  type        = string
  description = "Slack channel for team notifications"
}

variable "team_slack_workspace" {
  type        = string
  description = "Slack workspace for team notifications"
  default     = "Sony Music PDE"
}

variable "team_email_notifications_enabled" {
  type        = bool
  description = "Enable email notifications for the team"
  default     = false
}

variable "github_teams" {
  type        = list(string)
  description = "List of GitHub team handles to associate with the Datadog team, e.g. @theorchard/team-handle"
  default     = []
}
