summaryrefslogtreecommitdiff
path: root/website/docs/d/agent_pools.html.markdown
blob: 1292a0067472b01eccea5643b486e6ef1d682e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: "azuredevops"
page_title: "AzureDevops: azuredevops_agent_pools"
description: |-
  Use this data source to access information about existing Agent Pools within Azure DevOps.
---

# Data Source: azuredevops_agent_pools

Use this data source to access information about existing Agent Pools within Azure DevOps.

## Example Usage

```hcl
data "azuredevops_agent_pools" "example" {
}

output "agent_pool_name" {
  value = data.azuredevops_agent_pools.example.agent_pools.*.name
}

output "auto_provision" {
  value = data.azuredevops_agent_pools.example.agent_pools.*.auto_provision
}

output "auto_update" {
  value = data.azuredevops_agent_pools.example.agent_pools.*.auto_update
}

output "pool_type" {
  value = data.azuredevops_agent_pools.example.agent_pools.*.pool_type
}
```

## Argument Reference

This data source has no arguments

## Attributes Reference

The following attributes are exported:

- `agent_pools` - A list of existing agent pools in your Azure DevOps Organization with the following details about every agent pool:
  - `name` - The name of the agent pool
  - `pool_type` - Specifies whether the agent pool type is Automation or Deployment.
  - `auto_provision` - Specifies whether or not a queue should be automatically provisioned for each project collection.
  - `auto_update` - Specifies whether or not agents within the pool should be automatically updated.

## Relevant Links

- [Azure DevOps Service REST API 6.0 - Agent Pools - Get](https://docs.microsoft.com/en-us/rest/api/azure/devops/distributedtask/pools/get?view=azure-devops-rest-6.0)