Skip to content

Commit

Permalink
Merge pull request #13 from Jandev/10-managed-identity
Browse files Browse the repository at this point in the history
Support for Managed Identities
  • Loading branch information
dbarkol authored Nov 9, 2020
2 parents 596a067 + 9063fc3 commit 45fa824
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,14 @@
"description": "The pricing tier for the hosting plan."
}
},
"identity": {
"type": "string",
"defaultValue": "None",
"allowedValues": [
"None",
"SystemAssigned"
]
},
"repoURL": {
"type": "string",
"defaultValue": "https://github.com/Azure-Samples/azure-event-grid-viewer.git",
Expand Down Expand Up @@ -69,14 +77,17 @@
"apiVersion": "2015-08-01",
"name": "[parameters('siteName')]",
"type": "Microsoft.Web/sites",
"identity": {
"type": "[parameters('identity')]"
},
"location": "[parameters('location')]",
"dependsOn": [
"[resourceId('Microsoft.Web/serverfarms', parameters('hostingPlanName'))]"
],
"properties": {
"serverFarmId": "[parameters('hostingPlanName')]",
"siteConfig": {
"webSocketsEnabled": true
"webSocketsEnabled": true
},
"httpsOnly":true
},
Expand Down

0 comments on commit 45fa824

Please sign in to comment.