---
layout: "azuredevops"
page_title: "AzureDevops: azuredevops_group_entitlement"
description: |-
Manages a group entitlement within Azure DevOps organization.
---
Manages a group entitlement within Azure DevOps.
resource "azuredevops_group_entitlement" "example" {
display_name = "Group Name"
}resource "azuredevops_group_entitlement" "example" {
origin = "aad"
origin_id = "00000000-0000-0000-0000-000000000000"
}-
display_name- (Optional) The display name is the name used in Azure DevOps UI. Cannot be set together withorigin_idandorigin. -
origin_id- (Optional) The unique identifier from the system of origin. Typically, a sid, object id or Guid. e.g. Used for member of other tenant on Azure Active Directory. -
origin- (Optional) The type of source provider for the origin identifier. -
account_license_type- (Optional) Type of Account License. Possible values are:advanced,earlyAdopter,express,none,professional, orstakeholder. Defaults toexpress. In addition, the valuebasicis allowed which is an alias forexpressand reflects the name of theexpresslicense used in the Azure DevOps web interface. -
licensing_source- (Optional) The source of the licensing (e.g. Account. MSDN etc.). Possible values are:account,auto,msdn,none,profile,trial. Defaults toaccount.
~> NOTE: A existing group in Azure AD can only be referenced by the combination of origin_id and origin.
The following attributes are exported:
id- The id of the entitlement.principal_name- The principal name of a graph member on Azure DevOpsdescriptor- The descriptor is the primary way to reference the graph subject while the system is running. This field will uniquely identify the group graph subject.
The timeouts block allows you to specify timeouts for certain actions:
create- (Defaults to 30 minutes) Used when creating the Group Entitlement.read- (Defaults to 5 minute) Used when retrieving the Group Entitlement.update- (Defaults to 30 minutes) Used when updating the Group Entitlement.delete- (Defaults to 30 minutes) Used when deleting the Group Entitlement.
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- Member Entitlement Management: Read & Write