Skip to content

Commit

Permalink
Merge pull request #102 from equinor/IP-4855/parametrize-cors-settings
Browse files Browse the repository at this point in the history
IP-4855/add parameter supportCredentials
  • Loading branch information
franktore authored Nov 8, 2023
2 parents 46fce81 + 7e4c2d8 commit 21cc5dc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion resources/resourceApp/azuredeploy.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@
"type": "array",
"defaultValue": "[json(' [ ] ')]"
},
"supportCredentials": {
"type": "bool",
"defaultValue": false
},
"acrResourceGroup": {
"type": "string",
"defaultValue": "[resourceGroup().name]"
Expand Down Expand Up @@ -125,7 +129,7 @@
"alwaysOn": true,
"cors": {
"allowedOrigins": "[parameters('allowedCorsOrigins')]",
"supportCredentials": false
"supportCredentials": "[parameters('supportCredentials')]"
},
"http20Enabled": false,
"minTlsVersion": "1.2",
Expand Down

0 comments on commit 21cc5dc

Please sign in to comment.