Data Source: azuredevops_git_repository

Use this data source to access information about a single (existing) Git Repository within Azure DevOps. To read information about multiple Git Repositories use the data source azuredevops_git_repositories

Example Usage

data "azuredevops_project" "example" {
  name = "Example Project"
}

# Load a specific Git repository by name
data "azuredevops_git_repository" "example-single-repo" {
  project_id = data.azuredevops_project.example.id
  name       = "Example Repository"
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported: