Uploading a liquid map file to integration account using devops

86 Views Asked by At

Is there a way to upload a liquid map file to an existing integration account in azure using DevOps?

The only way i have found so far is to add the liquid map directly to the integration account ARM template, but this is time consuming & error prone as characters have to be escaped & the map can be quite long.

1

There are 1 best solutions below

0
Sukdev Mandal On

you can upload using azure CLI

New-AzIntegrationAccountMap -MapFilePath 'clouddrive/Schema1.xslt' -MapName 'Schema1' -MapType Xslt -Name 'IntegrationAccount31' -ResourceGroupName 'ResourceGroup11'