microsoft / vscode-asa

Azure Stream Analytics In VSCode
Creative Commons Attribution 4.0 International
10 stars 19 forks source link

How do maintain your own job parameters across compilations, such as deployment location? #110

Open nmg196 opened 5 months ago

nmg196 commented 5 months ago

How do you maintain your own parameters across compilation when compiling the .asaql file always overwrites the JobTemplate.json file AND the JobTemplate.parameters.json file? Some settings seem to get pulled in from JobConfig.json, but not all of them. As an example the "Location" setting always resets to "Central US" after every compilation even though we've set it to "North Europe" in JobSettings.json.

From the docs here: https://learn.microsoft.com/en-us/azure/stream-analytics/job-config-json ...it doesn't seem like specifying the "location" in JobSettings.json is a valid thing to do - so where would we specify this so it doesn't get overwritten on every compile?

image