Last active
July 17, 2018 15:16
-
-
Save glennc/d541e9b7ecdd31b8547cd5038d19461f to your computer and use it in GitHub Desktop.
2.1 Preview1 On Azure Post
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
{ | |
"type": "siteextensions", | |
"name": "AspNetCoreRuntime", | |
"apiVersion": "2015-04-01", | |
"location": "[resourceGroup().location]", | |
"properties": { | |
"version": "[parameters('aspnetcoreVersion')]" | |
}, | |
"dependsOn": [ | |
"[resourceId('Microsoft.Web/Sites', parameters('siteName'))]" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you have any full example of an ARM template and where to add this in a full file?