azure resource manager - How do I package source code for a web site and a database so that it can be referenced in a ARM template? -
i've been looking @ various articles around authoring arm template files including authoring azure resource manager templates. article explains how author template file deploy website assuming that website has been packaged .zip file , placed on azure blob storage:
"properties": { "packageuri": "https://auxmktplceprod.blob.core.windows.net/packages/startersite-modified.zip", "dbtype": "none", "connectionstring": "", "setparameters": { "application path": "[parameters('sitename')]" }
what doesn't explain how asp.net project can packaged .zip file.
i have asp.net web project in visual studio. how package build output asp.net project can referenced in arm template?
moreover solution consists of database represented in visual studio database project. same question that, how package build output database project can referenced in arm template?
for database can put webdeploy package dacpac , have webdeploy deployment or can create bacpac , have template deploy database bacpac.
Comments
Post a Comment