Manage an agent queue with azuredevops_agent_queue
mainThe azuredevops_agent_queue resource manages an agent queue within Azure DevOps. This is functionally equivalent to adding an Organization-defined agent pool to a specific project via the Azure DevOps UI.
Important Note on Authorization: Creating a queue does not automatically authorize it for use by all pipelines in the project. To grant access to all pipelines, you must use the azuredevops_resource_authorization resource alongside the queue.
resource "azuredevops_agent_queue" "example" {
project_id = azuredevops_project.example.id
agent_pool_id = data.azuredevops_agent_pool.example.id
}