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

正解:

Explanation:
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.