Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have an Azure Directory (Azure AD) tenant named Adatum and an Azure Subscription named Subscription1. Adatum contains a group named Developers.
Subscription1 contains a resource group named Dev.
You need to provide the Developers group with the ability to create Azure logic apps in the Dev resource group.
Solution: On Dev, you assign the Contributor role to the Developers group.
Does this meet the goal?
Click on the arrows to vote for the correct answer
A. B.A
The Contributor role can manage all resources (and add resources) in a Resource Group.
Yes, the given solution meets the goal of providing the Developers group with the ability to create Azure logic apps in the Dev resource group.
Explanation: To provide the Developers group with the ability to create Azure logic apps in the Dev resource group, we need to grant them appropriate permissions. The Contributor role provides full access to manage all resources in a resource group, including the ability to create, modify, and delete resources. Therefore, assigning the Contributor role to the Developers group on the Dev resource group will allow them to create Azure logic apps in that resource group.
Alternatively, we could also create a custom role that includes only the permissions required to create and manage Azure logic apps in the Dev resource group and assign that custom role to the Developers group. However, the solution provided in the question is simpler and more efficient as it involves assigning an existing built-in role with the necessary permissions.
Hence, the correct answer is A. Yes.