Data Source: azuredevops_team

Use this data source to access information about an existing Team in a Project within Azure DevOps.

Example Usage

resource "azuredevops_project" "example" {
  name               = "Example Project"
  work_item_template = "Agile"
  version_control    = "Git"
  visibility         = "private"
  description        = "Managed by Terraform"
}

data "azuredevops_team" "example" {
  project_id = azuredevops_project.example.id
  name       = "Example Project Team"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

PAT Permissions Required