■ Remove-AzRoleAssignment 명령을 사용해 리소스 그룹 범위에서 사용자 계정에 할당된 역할을 제거하는 방법을 보여준다.
▶ 실행 명령
1 2 3 4 5 6 7 8 9 |
Remove-AzRoleAssignment -SignInName testuser@texture2dhotmail.onmicrosoft.com ` -RoleDefinitionName "Contributor" ` -ResourceGroupName "TestResourceGroup" ※ testuser@texture2dhotmail.onmicrosoft.com : 사용자 계정 "Contributor" : 역할 "TestResourceGroup" : 리소스 그룹명 |