Data Source: azuredevops_projects

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

Example Usage

data "azuredevops_projects" "example" {
  name  = "Example Project"
  state = "wellFormed"
}

output "project_id" {
  value = data.azuredevops_projects.example.projects.*.project_id
}

output "name" {
  value = data.azuredevops_projects.example.projects.*.name
}

output "project_url" {
  value = data.azuredevops_projects.example.projects.*.project_url
}

output "state" {
  value = data.azuredevops_projects.example.projects.*.state
}

Argument Reference

The following arguments are supported:

DataSource without specifying any arguments will return all projects.

Attributes Reference

The following attributes are exported: