Data Source: azuredevops_agent_pools

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

Example Usage

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: