From a014381885555ecabc08849cf83f1ddeee63904e Mon Sep 17 00:00:00 2001 From: "Brian Moore (AZURE RESOURCE MANAGER)" Date: Tue, 22 Sep 2020 17:31:39 -0500 Subject: [PATCH] add BYOT to azuredeploy.json --- lz-lifecycle-mg/azuredeploy.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lz-lifecycle-mg/azuredeploy.json b/lz-lifecycle-mg/azuredeploy.json index 3450f0b..7cd176a 100644 --- a/lz-lifecycle-mg/azuredeploy.json +++ b/lz-lifecycle-mg/azuredeploy.json @@ -117,6 +117,26 @@ } } } + }, + { + "type": "Microsoft.Resources/deployments", + "apiVersion": "2019-10-01", + "name": "BYOT", + "location": "[deployment().location]", + "dependsOn": [ + "managementGroupLoop" + ], + "properties": { + "mode": "Incremental", + "templateLink": { + "contentVersion": "1.0.0.0", + "uri": "[uri(parameters('_artifactsLocation'), concat('BYOT/azuredeploy.json', parameters('_artifactsLocationSasToken')))]" + }, + "parametersLink": { + "contentVersion": "1.0.0.0", + "uri": "[uri(parameters('_artifactsLocation'), concat('BYOT/azuredeploy.parameters.json', parameters('_artifactsLocationSasToken')))]" + } + } } ], "outputs": {