3.7 Ensure that Cosmos DB Logging is Enabled (Manual)
Profile Applicability
- Level 1
Description
Cosmos DB logs should be captured to track events relevant to auditing and diagnostics.
Rationale
Logging of changes, events, and information related to Cosmos DB provides a diagnostic tool and a forensic record of activity. An effective set of logs help provide integrity and availability to the service and contribute to the effectiveness of detective systems such as a SIEM.
Impact
There may be additional storage costs for logging a large amount of events. Potentially only keep logs for a certain timeframe before they are deleted.
Audit Procedure
NOTE: This procedure assumes a Log Analytics Workspace or other logging destination already exists. Please see attached resources on this setup.
Audit from Azure Portal
- From
Azure CosmosDB, select the database you wish to audit. - Scroll down in the left column and select
> Monitoring. - Select Diagnostic Settings.
- Determine if there are any diagnostic settings that are being sent to a logging location. You will need to open each listed and determine if
allLogsunderCategory groupsis checked.
Audit from PowerShell
- Get the CosmosDB accounts for a specific resource group. Repeat for each resource group as necessary.
Get-AzCosmosDBAccount -ResourceGroupName <resource group name>
- For each CosmosDB, determine which log categories are enabled for each account using the Id of each CosmosDB Account.
Get-AzDiagnosticSetting -ResourceId <CosmosDB Account Id>
- Within the output of the above command, ensure the log categories have Enabled set to true.
Expected Result
Diagnostic settings should be configured with allLogs enabled under Category groups, sending logs to an appropriate logging destination (Log Analytics Workspace, Storage Account, or Event Hub).
Remediation
NOTE: This procedure assumes a Log Analytics Workspace or other logging destination already exists. Please see attached resources on this setup.
Remediate from Azure Portal
- From
Azure CosmosDB, select the database you wish to audit. - Scroll down in the left column and select
> Monitoring. - Select Diagnostic Settings.
- Select
+ Add Diagnostic Setting - Enter your name for this setting in
Diagnostic Setting Name. - Select
allLogsunderCategory groups - Select
Send to Log Analytics workspaceor other logging solution underDestination details. - Select your Azure subscription, and your log analytics workspace, or other connection details depending on your logging solution.
- Select Save in the top left corner.
Remediate from PowerShell
For each CosmosDB account out of compliance, enable the logging by running the following command:
$categories = @(
@{
Category="ControlPlaneRequests";
Enabled=$true;
RetentionPolicy=@{ Enabled=$false; Days=0 }
},
@{
Category="DataPlaneRequests";
Enabled=$true;
RetentionPolicy=@{ Enabled=$false; Days=0 }
},
@{
Category="MongoRequests";
Enabled=$true;
RetentionPolicy=@{ Enabled=$false; Days=0 }
},
@{
Category="SqlRequests";
Enabled=$true;
RetentionPolicy=@{ Enabled=$false; Days=0 }
},
@{
Category="GremlinQueries";
Enabled=$true;
RetentionPolicy=@{ Enabled=$false; Days=0 }
},
@{
Category="TableRequests";
Enabled=$true;
RetentionPolicy=@{ Enabled=$false; Days=0 }
}
)
Set-AzDiagnosticSetting -Name <name of new CosmosDB diagnostic setting> -ResourceId <CosmosDB Account Id> -WorkspaceId <log analytics workspace id> -Categories $categories -Enabled $true
Default Value
By default, event logging for Azure Cosmos DB is not enabled.