layout | page_title | sidebar_current | description |
---|---|---|---|
teamcity |
TeamCity: agent_pool_project_attachment |
docs-teamcity-resource-agent-pool-project-attachment |
Provides a TeamCity Agent Pool Project Attachment resource. |
Provides a TeamCity Agent Pool Project Attachment resource.
Project/s can be attached to multiple Agent Pools.
data "teamcity_agent_pool" "default" {
name = "Default"
}
resource "teamcity_agent_pool_project_attachment" "default" {
pool = "${data.teamcity_agent_pool.default.id}"
project = "${teamcity_project.default.id}"
}
The following arguments are supported:
pool
- (Required) ID of the Agent Pool.project
- (Required) ID of the Project to Attach.
The following attributes are exported:
id
- The Combination of Pool ID and Project IDpool
- The ID of the Agent Pool.project
- The ID of the Project to Attach.