From 5e81f76b8854785c96aa22ba79df7172659511d4 Mon Sep 17 00:00:00 2001 From: Mike Monteith Date: Mon, 6 Apr 2020 13:18:15 +0100 Subject: [PATCH] Rename disableCORS to enableCORS This describes the parameter better --- AzureResourceGroup/template.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AzureResourceGroup/template.json b/AzureResourceGroup/template.json index b45dbfe..de829c2 100644 --- a/AzureResourceGroup/template.json +++ b/AzureResourceGroup/template.json @@ -21,7 +21,7 @@ "hostingPlanSkuName": { "type": "String" }, - "disableCORS": { + "enableCORS": { "type": "Bool" }, "buildTag": { @@ -107,7 +107,7 @@ ], "cors": { "allowedOrigins": [ - "[if(parameters('disableCORS'), '*', 'https://www.nhs.uk')]" + "[if(parameters('enableCORS'), '*', 'https://www.nhs.uk')]" ] } },