User1 と User2 という名前の 2 人のユーザーを含む Sub1 という名前の Azure サブスクリプションがあります。
役割ベースのアクセス制御 (RBAC) 役割を User1 と User2 に割り当てる必要があります。ユーザーは、Sub1 で次のタスクを実行できる必要があります。
* User1 は、任意のストレージ アカウントのデータを表示する必要があります。
* User2 は、ユーザーにストレージ アカウントの共同作成者ロールを割り当てる必要があります。
このソリューションでは、最小特権の原則を使用する必要があります。
各ユーザーにどの RBAC ロールを割り当てる必要がありますか? 答えるには、適切な役割を適切なユーザーにドラッグします。
各ロールは、1 回または複数回使用することも、まったく使用しないこともできます。

正解:

User1: You should assign the Reader and Data Access role to User1. This role grants read access to Azure resources and data, including the data in any storage account1. This role is suitable for User1's task of viewing the data in any storage account, and it follows the principle of least privilege by not granting any write or delete permissions.
User2: You should assign the Storage Account Contributor role to User2. This role grants full access to manage storage accounts and their data, including the ability to assign roles in Azure RBAC2. This role is suitable for User2's task of assigning users the Contributor role for storage accounts, and it follows the principle of least privilege by not granting access to other types of resources.