tfe_team

Manages teams.

Example Usage

Basic usage:

resource "tfe_team" "test" {
  name         = "my-team-name"
  organization = "my-org-name"
}

Organization Permission usage:

resource "tfe_team" "test" {
  name         = "my-team-name"
  organization = "my-org-name"
  organization_access {
    manage_vcs_settings = true
  }
}

Argument Reference

The following arguments are supported:

The organization_access block supports:

Attributes Reference

Import

Teams can be imported; use <ORGANIZATION NAME>/<TEAM ID> or <ORGANIZATION NAME>/<TEAM NAME> as the import ID. For example:

terraform import tfe_team.test my-org-name/team-uomQZysH9ou42ZYY

or

terraform import tfe_team.test my-org-name/my-team-name