I need to deploy the string ${{ parameters.bundleTarget }} in my azure.yml.tmpl file, because that’s how Azure Pipeline replaces variables.
However, the patter for replacement is the same for databricks custom bundles. So when I run databricks bundle init my-custom-bundle
it tries to replace parameters.bundleTarget and gets an error because it does not exists in databricks bundles as it is a variable from Azure.
How can I use a scape character or pattern so I can deploy the ${{ parameters.bundleTarget }}
as is, not making the substitution in the bundle creation?