SV-276242r1150021_rule
V-276242
SRG-APP-000091-DB-000066
MSQL-00-004600
CAT II
10
Deploy an Azure SQL Managed Instance audit.
Refer to the supplemental file "AzureSQLMIAudit.sql" script.
Reference: https://learn.microsoft.com/en-us/azure/azure-sql/managed-instance/auditing-configure?view=azuresql
Review Azure SQL Managed Instance configuration to verify that audit records are produced when privileges/permissions/role memberships are retrieved.
To determine if an audit is configured, follow the instructions below:
Run this TSQL command to determine if SQL Auditing AuditActionGroups are configured:
SELECT DISTINCT sd.audit_action_name
FROM sys.server_audit_specification_details sd
JOIN sys.server_audit_specifications s
ON s.server_specification_id = sd.server_specification_id
WHERE s.is_state_enabled = 1
ORDER BY sd.audit_action_name
If no values exist for AuditActionGroup, this is a finding.
Verify the following AuditActionGroup(s) are configured:
SCHEMA_OBJECT_ACCESS_GROUP
If any listed AuditActionGroups do not exist in the configuration, this is a finding.
V-276242
False
MSQL-00-004600
Review Azure SQL Managed Instance configuration to verify that audit records are produced when privileges/permissions/role memberships are retrieved.
To determine if an audit is configured, follow the instructions below:
Run this TSQL command to determine if SQL Auditing AuditActionGroups are configured:
SELECT DISTINCT sd.audit_action_name
FROM sys.server_audit_specification_details sd
JOIN sys.server_audit_specifications s
ON s.server_specification_id = sd.server_specification_id
WHERE s.is_state_enabled = 1
ORDER BY sd.audit_action_name
If no values exist for AuditActionGroup, this is a finding.
Verify the following AuditActionGroup(s) are configured:
SCHEMA_OBJECT_ACCESS_GROUP
If any listed AuditActionGroups do not exist in the configuration, this is a finding.
M
5711