variable "organization" {
  default = "the-orchard"
}

variable "team_name" {
  type    = string
  default = "marketing-data-intelligence"
}

variable "members" {
  type = set(object({
    email = string
    role  = optional(string, "contributor"),
  }))
  default = [
    {
      email = "ihor.halas.ext@sonymusic-pde.com"
    },
    {
      email = "aleksey.urusov.ext@sonymusic-pde.com"
    },
  ]
}
