terraform-provider-github icon indicating copy to clipboard operation
terraform-provider-github copied to clipboard

Add repos into github_team data sources

Open richardpen opened this issue 5 years ago • 0 comments

Tested with the built binary, the output looks like:

result = {
  "description" = "This team manages xxxx"
  "id" = "xxxxx"
  "members" = [
    "user_name_1",
  ]
  "name" = "xxxx"
  "node_id" = "xxxxxx="
  "permission" = "pull"
  "privacy" = "closed"
  "repos" = [
    "xxxxx",
  ]
  "slug" = "xxxx"
}

richardpen avatar Aug 26 '20 20:08 richardpen