Data Source: azuredevops_iteration

Use this data source to access information about an existing Iteration (Sprint) 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_iteration" "example-root-iteration" {
  project_id     = azuredevops_project.example.id
  path           = "/"
  fetch_children = true
}

data "azuredevops_iteration" "example-child-iteration" {
  project_id     = azuredevops_project.example.id
  path           = "/Iteration 1"
  fetch_children = true
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

A children block supports the following:

PAT Permissions Required