Skip to main content

conveyor_team (Resource)

Provides a Conveyor team.

Example Usage

resource "conveyor_team" "my_team" {
name = "my_team"
}

Schema

Required

  • name (String) The name of the team.

Optional

  • sso_groups (List of String) The SSO Group mapping to add to the team.

Read-Only

  • id (String) The id of the team.

Import

Import is supported using the following syntax:

export TEAM_ID=$(conveyor team get --name my_team -ojson | jq -r ".Id")
terraform import conveyor_team.my_team "$TEAM_ID"