Why do I need to link application identities?
output = {
# Replace with your own path pointing to where you want your access changes to manifest.
# Path is an RFC 3986 URI, such as `github://{organization}/{repo}/path/to/file.tf`.
location = "github://organization/repo/access.tf"
append = <<-EOT
resource "github_team_membership" "gh_mem_{{ .user.github.username }}" {
team_id = github_team.test_team.id
username = "{{ .user.github.username }}"
role = "member"
}
EOT
}Last updated