Created
February 2, 2022 08:43
-
-
Save TheCloudScout/038dbbf38bc86607f17a5524e7df006a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"resources": [ | |
{ | |
"type": "microsoft.operationalinsights/workspaces", | |
"apiVersion": "2021-06-01", | |
"name": "[parameters('logAnalyticsName')]", | |
"location": "[parameters('location')]", | |
"properties": { | |
"sku": { | |
"name": "capacityreservation", | |
"capacityReservationLevel": 100 | |
}, | |
"retentionInDays": "[parameters('retentionInDays')]", | |
"workspaceCapping": { | |
"dailyQuotaGb": -1 | |
}, | |
"publicNetworkAccessForIngestion": "Enabled", | |
"publicNetworkAccessForQuery": "Enabled" | |
} | |
}, | |
{ | |
"type": "Microsoft.OperationsManagement/solutions", | |
"apiVersion": "2015-11-01-preview", | |
"name": "[variables('azureSentinelSolutionName')]", | |
"location": "[parameters('location')]", | |
"dependsOn": [ | |
"[resourceId('microsoft.operationalinsights/workspaces', parameters('logAnalyticsName'))]" | |
], | |
"plan": { | |
"name": "[variables('azureSentinelSolutionName')]", | |
"promotionCode": "", | |
"product": "OMSGallery/SecurityInsights", | |
"publisher": "Microsoft" | |
}, | |
"properties": { | |
"workspaceResourceId": "[resourceId('microsoft.operationalinsights/workspaces', parameters('logAnalyticsName'))]", | |
"sku": { | |
"name": "CapacityReservation", | |
"capacityReservationLevel": 200 | |
} | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment