Skip to content

Commit 984454a

Browse files
authored
Merge pull request #80 from Azure-Samples/keyvault_auditing
Audit keyvault access via log analytics
2 parents 75d8c04 + 0b05fd8 commit 984454a

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

{{cookiecutter.__src_folder_name}}/infra/core/security/keyvault.bicep

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
metadata description = 'Creates an Azure Key Vault.'
22
param name string
33
param location string = resourceGroup().location
4+
param logAnalyticsWorkspaceId string
45
param tags object = {}
56

67
param principalId string = ''
@@ -35,6 +36,20 @@ resource keyVault 'Microsoft.KeyVault/vaults@2022-07-01' = {
3536
}
3637
}
3738

39+
resource logs 'Microsoft.Insights/diagnosticSettings@2021-05-01-preview' = {
40+
name: 'logs'
41+
scope: keyVault
42+
properties: {
43+
workspaceId: logAnalyticsWorkspaceId
44+
logs: [
45+
{
46+
category: 'AuditEvent'
47+
enabled: true
48+
}
49+
]
50+
}
51+
}
52+
3853
output endpoint string = keyVault.properties.vaultUri
3954
output id string = keyVault.id
4055
output name string = keyVault.name

{{cookiecutter.__src_folder_name}}/infra/main.bicep

+1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ module keyVault './core/security/keyvault.bicep' = {
4747
location: location
4848
tags: tags
4949
principalId: principalId
50+
logAnalyticsWorkspaceId: monitoring.outputs.logAnalyticsWorkspaceId
5051
}
5152
}
5253

0 commit comments

Comments
 (0)