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

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

variable "members" {
  type = set(object({
    email = string
    role  = optional(string, "contributor"),
  }))
  default = [
    {
      "email" : "jonathan.raysor@sonymusic-pde.com"
      "role" : "admin"
    },
    {
      "email" : "michael.rojas@sonymusic-pde.com"
      "role" : "admin"
    },
    {
      "email" : "diego.salazar@sonymusic-pde.com"
    },
  ]
}
