blob: 3a6dda5acb33f67af0b360fcb5ebf0ad6ec1245d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
---
layout: "azuredevops"
page_title: "AzureDevops: azuredevops_project"
description: |-
Use this data source to access information about an existing Project within Azure DevOps.
---
# Data Source: azuredevops_project
Use this data source to access information about an existing Project within Azure DevOps.
## Example Usage
```hcl
data "azuredevops_project" "example" {
name = "Example Project"
}
output "project" {
value = data.azuredevops_project.example
}
```
## Argument Reference
The following arguments are supported:
- `name` - (Required if `project_id` not set) Name of the Project.
- `project_id` - (Required if `name` not set) ID of the Project.
## Attributes Reference
The following attributes are exported:
`name` - The name of the referenced project
`description` - The description of the referenced project
`visibility` - The visibility of the referenced project
`version_control` - The version control of the referenced project
`work_item_template` - The work item template for the referenced project
`process_template_id` - The process template ID for the referenced project
## Relevant Links
- [Azure DevOps Service REST API 6.0 - Projects - Get](https://docs.microsoft.com/en-us/rest/api/azure/devops/core/projects/get?view=azure-devops-rest-6.0)
|