Skip to content

Commit 3a2f360

Browse files
authored
Merge pull request #114976 from curtand/pim0511
[Azure AD PIM] fix quotes
2 parents f02931d + 535b822 commit 3a2f360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/active-directory/privileged-identity-management/powershell-for-azure-ad-roles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ There are four main objects in the setting. Only three of these objects are curr
122122
To update the role setting, you must get the existing setting object for a particular role and make changes to it:
123123

124124
$setting = Get-AzureADMSPrivilegedRoleSetting -ProviderId 'aadRoles' -Filter "roleDefinitionId eq 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'"
125-
$setting.UserMemberSetting.justificationRule = "{'required':false}"
125+
$setting.UserMemberSetting.justificationRule = '{"required":false}'
126126

127127
You can then go ahead and apply the setting to one of the objects for a particular role as shown below. The ID here is the role setting ID that can be retrieved from the result of the list role settings cmdlet.
128128

0 commit comments

Comments
 (0)