Equivalent to the the team_sync
attribute of the grafana_team
resource. Use one or the other to configure a team's external groups syncing config.
resource "grafana_team" "my_team" {
name = "My Team"
}
resource "grafana_team_external_group" "test-team-group" {
team_id = grafana_team.my_team.id
groups = [
"test-group-1",
"test-group-2"
]
}
groups
(Set of String) The team external groups listteam_id
(String) The Team IDid
(String) The ID of this resource.Import is supported using the following syntax:
terraform import grafana_team_external_group.name "{{ teamID }}"
terraform import grafana_team_external_group.name "{{ orgID }}:{{ teamID }}"