resource "github_team" "some_team" {
name = "SomeTeam"
description = "Some cool team"
}
resource "github_organization_security_manager" "some_team" {
team_slug = github_team.some_team.slug
}
The following arguments are supported:
team_slug
- (Required) The slug of the team to manage.GitHub Security Manager Teams can be imported using the GitHub team ID e.g.
$ terraform import github_organization_security_manager.core 1234567