Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1009 Bytes

agent_pool_project_attachment.html.markdown

File metadata and controls

43 lines (29 loc) · 1009 Bytes
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.

teamcity_agent_pool_project_attachment

Provides a TeamCity Agent Pool Project Attachment resource.

Project/s can be attached to multiple Agent Pools.

Example Usage

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}"
}

Argument Reference

The following arguments are supported:

  • pool - (Required) ID of the Agent Pool.
  • project - (Required) ID of the Project to Attach.

Attributes Reference

The following attributes are exported:

  • id - The Combination of Pool ID and Project ID
  • pool - The ID of the Agent Pool.
  • project - The ID of the Project to Attach.