Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 987 Bytes

github_organization_team_sync_groups.md

File metadata and controls

69 lines (48 loc) · 987 Bytes

github_organization_team_sync_groups

back

Index

Terraform

terraform {
  required_providers {
    github = ">= 4.6.0"
  }
}

top

Example Usage

module "github_organization_team_sync_groups" {
  source = "./modules/github/d/github_organization_team_sync_groups"

}

top

Variables

top

Datasource

data "github_organization_team_sync_groups" "this" {
}

top

Outputs

output "groups" {
  description = "returns a list of object"
  value       = data.github_organization_team_sync_groups.this.groups
}

output "id" {
  description = "returns a string"
  value       = data.github_organization_team_sync_groups.this.id
}

output "this" {
  value = github_organization_team_sync_groups.this
}

top