Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.

Commit 9652b73

Browse files
authored
Merge pull request #20 from Azure-Samples/db-deployment
Identity None investigation
2 parents 966243d + 992fe9f commit 9652b73

1 file changed

Lines changed: 3 additions & 14 deletions

File tree

azuredeploy.json

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
2+
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
33
"contentVersion": "1.0.0.0",
44
"parameters": {
55
"siteName": {
@@ -29,14 +29,6 @@
2929
"description": "The pricing tier for the hosting plan."
3030
}
3131
},
32-
"identity": {
33-
"type": "string",
34-
"defaultValue": "None",
35-
"allowedValues": [
36-
"None",
37-
"SystemAssigned"
38-
]
39-
},
4032
"repoURL": {
4133
"type": "string",
4234
"defaultValue": "https://github.com/Azure-Samples/azure-event-grid-viewer.git",
@@ -67,7 +59,7 @@
6759
"location": "[parameters('location')]",
6860
"sku": {
6961
"name": "[parameters('sku')]",
70-
"capacity": "0"
62+
"capacity": 0
7163
},
7264
"properties": {
7365
"name": "[parameters('hostingPlanName')]"
@@ -77,9 +69,6 @@
7769
"apiVersion": "2015-08-01",
7870
"name": "[parameters('siteName')]",
7971
"type": "Microsoft.Web/sites",
80-
"identity": {
81-
"type": "[parameters('identity')]"
82-
},
8372
"location": "[parameters('location')]",
8473
"dependsOn": [
8574
"[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]"
@@ -93,7 +82,7 @@
9382
},
9483
"resources": [
9584
{
96-
"apiVersion": "2015-08-01",
85+
"apiVersion": "2018-11-01",
9786
"name": "web",
9887
"type": "sourcecontrols",
9988
"dependsOn": [

0 commit comments

Comments
 (0)