azuredevops_group_entitlement

Manages a group entitlement within Azure DevOps.

Example Usage

With an Azure DevOps local group managed by this resource

resource "azuredevops_group_entitlement" "example" {
  display_name = "Group Name"
}

With group origin ID

resource "azuredevops_group_entitlement" "example" {
  origin    = "aad"
  origin_id = "00000000-0000-0000-0000-000000000000"
}

Argument Reference

NOTE: A existing group in Azure AD can only be referenced by the combination of origin_id and origin.

Attributes Reference

The following attributes are exported:

Import

The resource allows the import via the ID of a group entitlement, which is a UUID.

terraform import azuredevops_group_entitlement.example 00000000-0000-0000-0000-000000000000

PAT Permissions Required