layout | page_title | description |
---|---|---|
azuredevops |
AzureDevops: azuredevops_identity_group |
Use this data source to access information about existing Groups within Azure DevOps |
Use this data source to access information about an existing Group within Azure DevOps On-Premise(Azure DevOps Server).
# load existing group with specific name
data "azuredevops_identity_group" "example-project-group" {
project_id = data.azuredevops_project.example.id
name = "[Project-Name]\\Group-Name"
}
The following arguments are supported:
-
name
- (Required) The name of the group. -
project_id
- (Required) The Project ID.
The following attributes are exported:
-
id
- The ID is the primary way to reference the identity subject. This field will uniquely identify the same identity subject across both Accounts and Organizations. -
name
- This is the non-unique display name of the identity subject. To change this field, you must alter its value in the source provider. -
descriptor
- The descriptor of the identity group. -
subject_descriptor
- The subject descriptor of the identity group.
The timeouts
block allows you to specify timeouts for certain actions:
read
- (Defaults to 5 minute) Used when retrieving the Identity Group.