You create a dashboard in Azure and share it with a colleague by assigning them Reader role on the dashboard resource. What will your colleague be able to do?
Think about what the Reader role allows in Azure.
The Reader role allows viewing resources but does not permit editing or deleting. Therefore, your colleague can see and interact with the dashboard but cannot change or share it.
You manage multiple Azure dashboards for different teams in your organization. What is the best way to organize and manage these dashboards to ensure proper access and easy maintenance?
Consider how Azure RBAC and resource groups help with access control and organization.
Creating dashboards in a shared resource group and assigning team-specific access via RBAC ensures proper security and easier management compared to personal subscriptions or manual sharing.
Which JSON snippet correctly configures an Azure dashboard tile to show the average CPU usage of a specific virtual machine over the last 24 hours?
Check the exact metric name and time range format used by Azure Monitor metrics.
The correct metric name is "Percentage CPU" and the time range uses ISO 8601 duration format "PT24H" for 24 hours. Aggregation should be "Average".
You want to ensure that only specific users can modify an Azure dashboard, while others can only view it. Which approach enforces this securely?
Think about Azure RBAC roles and their permissions.
Owner role allows full management including editing, while Reader role only allows viewing. This separation enforces permissions securely.
You create an Azure dashboard resource in the East US region but most users accessing it are located in West Europe. What is the likely impact of this setup?
Consider how Azure handles resource location and user access globally.
Azure dashboards are regional resources, but access is global. Network latency can affect load times, but permissions are based on Azure AD and RBAC, not region.