File tree 2 files changed +16
-0
lines changed
{{cookiecutter.__src_folder_name}}/infra
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 1
1
metadata description = 'Creates an Azure Key Vault.'
2
2
param name string
3
3
param location string = resourceGroup ().location
4
+ param logAnalyticsWorkspaceId string
4
5
param tags object = {}
5
6
6
7
param principalId string = ''
@@ -35,6 +36,20 @@ resource keyVault 'Microsoft.KeyVault/vaults@2022-07-01' = {
35
36
}
36
37
}
37
38
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
+
38
53
output endpoint string = keyVault .properties .vaultUri
39
54
output id string = keyVault .id
40
55
output name string = keyVault .name
Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ module keyVault './core/security/keyvault.bicep' = {
47
47
location : location
48
48
tags : tags
49
49
principalId : principalId
50
+ logAnalyticsWorkspaceId : monitoring .outputs .logAnalyticsWorkspaceId
50
51
}
51
52
}
52
53
You can’t perform that action at this time.
0 commit comments