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

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

variable "members" {
  type = set(object({
    email = string
    role  = optional(string, "contributor"),
  }))
  default = [
    {
      "email" : "mhirth@theorchard.com"
    },
    {
      "email" : "mwalker@theorchard.com"
    },
    {
      "email" : "jian@theorchard.com"
    },
    {
      "email" : "piannone@theorchard.com"
    },
    {
      "email" : "rkhandeparkar@theorchard.com"
    },
    {
      "email" : "mstead@theorchard.com"
    },
    {
      "email" : "yostapyuk@theorchard.com"
    },
    {
      "email" : "oyatsuk@theorchard.com"
    },
    {
      "email" : "jchung@theorchard.com"
    },
    {
      "email" : "rpapat@theorchard.com"
    },
    {
      "email" : "jdenniss@theorchard.com"
      "role" : "admin"
    },
    {
      "email" : "lseal@theorchard.com"
    },
    {
      "email" : "ingaku@theorchard.com"
    },
    {
      "email" : "ntursunkul@theorchard.com"
      "role" : "admin"
    },
    {
      "email" : "otalaga@theorchard.com"
    },
    {
      "email" : "kturner1@theorchard.com"
    },
    {
      "email" : "mbalan@theorchard.com"
    },
    {
      "email" : "cbeesley@sonymusic-pde.com"
    },
    {
      "email" : "nils.littmann@sonymusic-pde.com"
    },
    {
      "email" : "jlim@sonymusic-pde.com"
      "role" : "admin"
    },
    {
      "email" : "jfidlow@sonymusic-pde.com"
    },
    {
      "email" = "jan.mlcoch.ext@sonymusic-pde.com"
    }
  ]
}
