There are many reasons why we want to automate Azure Data Explorer solution provisioning: ensuring parity between environments, having fast and low-risk deployments to our production environment, build environments on the fly (e.g. temporary performance test), etc. .
With a recent feature we introduced, it is now easier than ever to build an entire environment with a single tool: ARM template.
We can author a single ARM template to deploy:
A key enabling feature is the ability to deploy KQL scripts. It is now possible to do this without a storage account to store the scripts by simply passing the scripts inline in the ARM templates.
{
"type": "Microsoft.Kusto/Clusters/Databases/Scripts",
"apiVersion": "2022-02-01",
"name": "myScript",
"properties": {
"scriptContent": ".create table Simple(Id:int)\n\n.create table Simple2(Name:string)"
}
}
resource perfTestDbs 'Microsoft.Kusto/clusters/databases/scripts@2022-02-01' = {
name: 'myScript'
properties: {
scriptContent: loadTextContent('script.kql')
}
}
This will soon be available using Terraform.
This feature makes it possible to implement simpler automation around Azure Data Explorer. Read the updated online documentation to see how to use it in your deployments.
ADX web explorer team is looking forward for your feedback in KustoWebExpFeedback@service.microsoft.com
You’re also welcome to suggest more ideas and vote for them here - https://aka.ms/adx.ideas
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.