Data Source: azuredevops_team

Use this data source to access information about existing Teams in a Project or globally within an Azure DevOps organization

Example Usage

data "azuredevops_teams" "example" {
}

output "project_id" {
  value = data.azuredevops_teams.example.teams.*.project_id
}

output "name" {
  value = data.azuredevops_teams.example.teams.*.name
}

output "alladministrators" {
  value = data.azuredevops_teams.example.teams.*.administrators
}

output "administrators" {
  value = data.azuredevops_teams.example.teams.*.members
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

PAT Permissions Required