Data Source: azuredevops_area

Use this data source to access information about an existing Area (Component) 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_area" "example" {
  project_id     = azuredevops_project.example.id
  path           = "/"
  fetch_children = "false"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

A children block supports the following:

PAT Permissions Required