Skip to content

Commit

Permalink
Fixed logic statement in default template
Browse files Browse the repository at this point in the history
  • Loading branch information
hansenms committed Sep 17, 2018
1 parent 015e13e commit f4582d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/templates/default-azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"keyvaultEndpoint": "[concat('https://', variables('serviceName'), '.vault.azure.net/')]",
"appServicePlanResourceGroup": "[if(empty(parameters('appServicePlanResourceGroup')), resourceGroup().name, parameters('appServicePlanResourceGroup'))]",
"appServicePlanName": "[if(empty(parameters('appServicePlanName')),concat(variables('serviceName'),'-asp'),parameters('appServicePlanName'))]",
"securityAuthenticationEnabled": "[if(and(not(empty(parameters('securityAuthenticationAuthority'))),not(empty(parameters('securityAuthenticationAudience')))),bool('true'),bool('false'))]"
"securityAuthenticationEnabled": "[and(not(empty(parameters('securityAuthenticationAuthority'))),not(empty(parameters('securityAuthenticationAudience'))))]"
},
"resources": [
{
Expand Down

0 comments on commit f4582d1

Please sign in to comment.