Azure / template-specs

MIT License
31 stars 4 forks source link

Specify parameter files for the linked templates #44

Open f1xxxer opened 3 years ago

f1xxxer commented 3 years ago

It would be very convenient to have a possibility to specify parameter files for the linked templates with relative path.

For example:

 "resources": [               
        {
            "name": my-deploy",
            "type": "Microsoft.Resources/deployments",
            "apiVersion": "2020-06-01",
            "properties": {
                "mode": "Incremental",
                "templateLink": {
                    "relativePath": "linked.json"
                },
                "parametersLink": {
                     "relativePath": "linked.parameters.json"
                }
            }            
        }
    ]