From 4b678b589c2eb21ba853569f912c0962239d7c09 Mon Sep 17 00:00:00 2001 From: Erwin <4255748+erwinkramer@users.noreply.github.com> Date: Mon, 20 Apr 2026 17:11:14 +0200 Subject: [PATCH] Fix typo in roleDefinitions function and update description Corrected a typo in the roleDefinitions function name and clarified the description regarding role definitions. --- .../azure-resource-manager/bicep/bicep-functions-resource.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/articles/azure-resource-manager/bicep/bicep-functions-resource.md b/articles/azure-resource-manager/bicep/bicep-functions-resource.md index 732550101a2be..e17ce274593cb 100644 --- a/articles/azure-resource-manager/bicep/bicep-functions-resource.md +++ b/articles/azure-resource-manager/bicep/bicep-functions-resource.md @@ -663,9 +663,9 @@ For more information, see the [JSON template resourceId function](../templates/t ## roleDefinitions -`roleDefinisions(roleName)` +`roleDefinitions(roleName)` -Returns information about the specified role definition, including `id` and `roleDefinitionId`. It's a name-based helper for Azure RBAC role assignments. Instead of requiring you to hardcode the GUID of a built-in role definition (like Contributor, Reader, and others), it lets you provide the built-in role’s display name, and the function resolves the corresponding role definition information at deployment time. +Returns information about the specified role definition, including `id` and `roleDefinitionId`. It's a name-based helper for Azure RBAC role assignments. Instead of requiring you to hardcode the GUID of a custom or built-in role definition (like Contributor, Reader, and others), it lets you provide the custom or built-in role’s display name, and the function resolves the corresponding role definition information at deployment time. Namespace: [az](bicep-functions.md#namespaces-for-functions).