Information
Resource locking is a powerful protection mechanism that can prevent inadvertent modification/deletion of resources within Azure subscriptions/Resource Groups and is a recommended NIST configuration.
Rationale:
Given the resource lock functionality is outside of standard Role Based Access Control(RBAC), it would be prudent to create a resource lock administrator role to prevent inadvertent unlocking of resources.
Impact:
By adding this role, specific permissions may be granted for managing just resource locks rather than needing to provide the wide Owner or User Access Administrator role, reducing the risk of the user being able to do unintentional damage.
NOTE: Nessus has not performed this check. Please review the benchmark to ensure target compliance.
Solution
Remediate from Azure Portal
In the Azure portal, open a subscription or resource group where you want the custom role to be assigned.
Select Access control (IAM).
Click Add.
Select Add custom role.
In the Custom role name field enter Resource Lock Administrator.
In the Description field enter Can Administer Resource Locks.
For Baseline permissions select Start from scratch
Select Next.
In the Permissions tab select Add permissions.
In the Search for a permission box, type in Microsoft.Authorization/locks to search for permissions.
Click on the result.
Check the box next to Permission.
Select Add.
Select Review + create.
Select Create.
Assign the newly created role to the appropriate user.
Remediate from PowerShell:
Below is a power shell definition for a resource lock administrator role created at an Azure Management group level
Import-Module Az.Accounts
Connect-AzAccount
$role = Get-AzRoleDefinition 'User Access Administrator'
$role.Id = $null
$role.Name = 'Resource Lock Administrator'
$role.Description = 'Can Administer Resource Locks'
$role.Actions.Clear()
$role.Actions.Add('Microsoft.Authorization/locks/*')
$role.AssignableScopes.Clear()
* Scope at the Management group level Management group
$role.AssignableScopes.Add('/providers/Microsoft.Management/managementGroups/MG-Name')
New-AzRoleDefinition -Role $role
Get-AzureRmRoleDefinition 'Resource Lock Administrator'
Item Details
Category: ACCESS CONTROL, AUDIT AND ACCOUNTABILITY, MEDIA PROTECTION
References: 800-53|AC-2, 800-53|AC-3, 800-53|AC-5, 800-53|AC-6, 800-53|AC-6(1), 800-53|AC-6(7), 800-53|AU-9(4), 800-53|MP-2, CSCv7|14.6
Control ID: 7c9368f9ee903c4153b781164ccd2c5bee4aa989372a7db29f2b8747880f5a9a