Assigns a given Principal (User or Group) to a given Role in a Private Azure Marketplace.
data "azurerm_client_config" "example" {
}
resource "azurerm_marketplace_role_assignment" "example" {
role_definition_name = "Marketplace Admin"
principal_id = data.azurerm_client_config.example.object_id
lifecycle {
ignore_changes = [
name,
role_definition_id,
]
}
}
data "azurerm_client_config" "example" {
}
data "azurerm_role_definition" "example" {
name = "Log Analytics Reader"
}
resource "azurerm_marketplace_role_assignment" "example" {
role_definition_id = "${data.azurerm_role_definition.example.id}"
principal_id = data.azurerm_client_config.example.object_id
lifecycle {
ignore_changes = [
role_definition_name,
]
}
}
The following arguments are supported:
principal_id
- (Required) The ID of the Principal (User, Group or Service Principal) to assign the Role Definition to. Changing this forces a new resource to be created.name
- (Optional) A unique UUID/GUID for this Role Assignment - one will be generated if not specified. Changing this forces a new resource to be created.
role_definition_id
- (Optional) The Scoped-ID of the Role Definition. Changing this forces a new resource to be created. Conflicts with role_definition_name
.
role_definition_name
- (Optional) The name of a built-in Role. Changing this forces a new resource to be created. Conflicts with role_definition_id
.
condition
- (Optional) The condition that limits the resources that the role can be assigned to. Changing this forces a new resource to be created.
condition_version
- (Optional) The version of the condition. Possible values are 1.0
or 2.0
. Changing this forces a new resource to be created.
delegated_managed_identity_resource_id
- (Optional) The delegated Azure Resource ID which contains a Managed Identity. Changing this forces a new resource to be created.
description
- (Optional) The description for this Role Assignment. Changing this forces a new resource to be created.
skip_service_principal_aad_check
- (Optional) If the principal_id
is a newly provisioned Service Principal
set this value to true
to skip the Azure Active Directory
check which may fail due to replication lag. This argument is only valid if the principal_id
is a Service Principal
identity. Defaults to false
. Changing this forces a new resource to be created.
In addition to the Arguments listed above - the following Attributes are exported:
id
- The Role Assignment ID.
principal_type
- The type of the principal_id
, e.g. User, Group, Service Principal, Application, etc.
The timeouts
block allows you to specify timeouts for certain actions:
create
- (Defaults to 30 minutes) Used when creating the Role Assignment.update
- (Defaults to 30 minutes) Used when updating the Role Assignment.read
- (Defaults to 5 minutes) Used when retrieving the Role Assignment.delete
- (Defaults to 30 minutes) Used when deleting the Role Assignment.Role Assignments can be imported using the resource id
, e.g.
terraform import azurerm_marketplace_role_assignment.example /providers/Microsoft.Marketplace/providers/Microsoft.Authorization/roleAssignments/00000000-0000-0000-0000-000000000000
/providers/Microsoft.Marketplace/providers/Microsoft.Authorization/roleAssignments/00000000-0000-0000-0000-000000000000|00000000-0000-0000-0000-000000000000