conveyor_project_team (Resource)
Links a team to a Conveyor project.
Example Usage
resource "conveyor_project" "my_project" {
name = "my_project"
}
resource "conveyor_team" "dev" {
name = "dev"
}
resource "conveyor_project_team" "my_project_team" {
project_id = conveyor_project.my_project.id
team_id = conveyor_team.dev.id
role = "admin"
}
Schema
Required
project_id
(String) The id of the project to add the team to.role
(String) The role the team should have on the project, eitheradmin
orcontributor
.team_id
(String) The id of the team to add.
Read-Only
id
(String) The ID of this resource.