How to pass variables between templates - ARM json
问题 I'm looking for a way to pass a variable (normal string) from a linked template back up to my main template. I want to use something like: (in linked template) "outputs": { "installStringNodes": { "type": "string", "value": "[variables('installString').value]" } } And then i want to call this variable into my main template. But i can't seem to crack how. "variables":{ "installStringFromNodeResources": { "value": "[??('node-resources')??.outputs.installStringNodes.value]" }, } There's a