mirror of
https://github.com/bartvdbraak/keyweave.git
synced 2025-06-28 20:29:11 +00:00
feat: bicep templates for azure resources
This commit is contained in:
parent
cdb62b86e0
commit
3ed4444422
5 changed files with 221 additions and 0 deletions
24
bicep/modules/law.bicep
Normal file
24
bicep/modules/law.bicep
Normal file
|
@ -0,0 +1,24 @@
|
|||
param nameFormat string
|
||||
param location string
|
||||
param tags object
|
||||
|
||||
/*
|
||||
Log Analytics Workspace
|
||||
*/
|
||||
|
||||
resource logAnalyticsWorkspace 'Microsoft.OperationalInsights/workspaces@2022-10-01' = {
|
||||
name: format(nameFormat, 'LAW', 1)
|
||||
location: location
|
||||
tags: tags
|
||||
properties: {
|
||||
sku: {
|
||||
name: 'PerGB2018'
|
||||
}
|
||||
features: {
|
||||
enableLogAccessUsingOnlyResourcePermissions: true
|
||||
}
|
||||
workspaceCapping: {
|
||||
dailyQuotaGb: json('0.025')
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue