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

variable "team_name" {
  type = string
  default = "rti"
}

variable "members" {
  type = set(object({
    email = string
    role  = optional(string, "contributor"),
  }))
  default = [
    {
      "email": "boris.babiy.sme@sonymusic-pde.com"
      "role": "admin"
    },
    {
      "email": "nils.littmann@sonymusic-pde.com"
    },
    {
      "email": "jfidlow@sonymusic-pde.com"
    },
  ]
}
