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

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

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