Framework/Configurations/AlertMonitoring/ADOScannerLAWorkbook.json
{
"contentVersion": "1.0.0.0", "parameters": { "location": { "type": "string", "defaultValue": "" }, "resourcegroup": { "type": "string", "defaultValue": "" }, "organizationName": { "type": "string", "defaultValue": "" }, "subscriptionId": { "type": "string", "defaultValue": "" }, "workspace": { "type": "string", "defaultValue": "" }, "workspaceapiversion": { "type": "string", "defaultValue": "" }, "viewName": { "type": "string", "defaultValue": "" }, "workbookSourceId": { "type": "string", "defaultValue": "[Concat('/subscriptions/', parameters('subscriptionId'), '/resourceGroups/', parameters('resourcegroup'), '/providers/Microsoft.OperationalInsights/workspaces/', parameters('workspace'))]", "metadata": { "description": "The id of resource instance to which the workbook will be associated" } }, "workbookId": { "type": "string", "defaultValue": "[newGuid()]", "metadata": { "description": "The unique guid for this workbook instance" } } }, "resources": [ { "name": "[parameters('workbookId')]", "type": "microsoft.insights/workbooks", "location": "[resourceGroup().location]", "apiVersion": "2018-06-17-preview", "dependsOn": [], "kind": "shared", "properties": { "displayName": "[parameters('viewName')]", "serializedData": "", "version": "1.0", "sourceId": "[parameters('workbookSourceId')]", "category": "workbook" } } ], "outputs": { "workbookId": { "type": "string", "value": "[resourceId( 'microsoft.insights/workbooks', parameters('workbookId'))]" } }, "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#" } |