Last active
August 15, 2020 12:34
-
-
Save jarig/b6071318a512b3b785e02bcf5796ecbb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"resources": [ | |
{ | |
"apiVersion": "2018-11-01", | |
"name": "[parameters('appService_name')]", | |
"type": "Microsoft.Web/sites", | |
"kind": "WebApp", | |
"location": "[parameters('appServicePlan_location')]", | |
"identity": { | |
"type": "UserAssigned", | |
"userAssignedIdentities": { | |
"[resourceId('Microsoft.ManagedIdentity/userAssignedIdentities', parameters('appService_identityName'))]": {} | |
} | |
}, | |
"tags": { | |
}, | |
"dependsOn": [ | |
], | |
"resources": [ | |
{ | |
"apiVersion": "2018-11-01", | |
"name": "MSDeploy", | |
"type": "Extensions", | |
"dependsOn": [ | |
"[resourceId('Microsoft.Web/Sites', parameters('appService_name'))]" | |
], | |
"properties": { | |
"packageUri": "[parameters('servicePackageLink')]" | |
} | |
} | |
], | |
"properties": { | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment