* Custom parser deployer
This commit is contained in:
Yaron 2021-06-08 12:05:14 +03:00 коммит произвёл GitHub
Родитель d55b9f7035
Коммит 8a90d3f02c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 55 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,50 @@
{
"$schema": "https://schema.management.azure.com/schemas/2019-08-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"workspaceName": {
"type": "string"
},
"location": {
"type": "string"
},
"ParserFunctionAlias": {
"type": "string",
"metadata": {
"description": "Parser function alias"
}
},
"ParserCode": {
"type": "string",
"metadata": {
"description": "KQL parser query"
}
}
},
"resources": [
{
"type": "Microsoft.OperationalInsights/workspaces",
"apiVersion": "2017-03-15-preview",
"name": "[parameters('workspaceName')]",
"location": "[parameters('location')]",
"resources": [
{
"type": "savedSearches",
"apiVersion": "2020-08-01",
"name": "[parameters('ParserFunctionAlias')]",
"dependsOn": [
"[concat('Microsoft.OperationalInsights/workspaces/', parameters('workspaceName'))]"
],
"properties": {
"etag": "*",
"displayName": "Generic Parser",
"category": "Security",
"FunctionAlias": "[parameters('ParserFunctionAlias')]",
"query": "[parameters('ParserCode')]",
"version": 1
}
}
]
}
]
}

Просмотреть файл

@ -0,0 +1,5 @@
# Custom Parser
This template let's you deply a custom parser
[![Deploy to Azure](https://aka.ms/deploytoazurebutton)](https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FAzure%2FAzure-Sentinel%2Fmaster%2FTools%2FARM-Templates%2FParserQuery%2FCustomParser.json)