From 0e7a3276ba325c5c49ac1f994af090eb10a0407a Mon Sep 17 00:00:00 2001 From: Jeremy Gray Date: Thu, 30 May 2019 22:00:18 -0400 Subject: [PATCH] add app service hostname as an output --- azuredeploy.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/azuredeploy.json b/azuredeploy.json index e309b07..a71967f 100644 --- a/azuredeploy.json +++ b/azuredeploy.json @@ -95,5 +95,11 @@ } ] } - ] + ], + "outputs": { + "appServiceEndpoint": { + "type": "string", + "value": "[concat('https://',reference(resourceId('Microsoft.Web/sites', parameters('siteName'))).hostNames[0])]" + } + } }