Reputation: 2481
I have created a configurable mvc5 application, lets say a kind of template (web UI with sql server and entity framework) with configuration values in a database table
Our Customers will fill in a form that includes configuration parameters like Application Name, Logo file, Footer statement (the same parameters as the template mvc5)
upon completion of the form, I want to automate the following
Is this possible? Most of SO and google results seem to be pointing towards to automating build and deploy to an existing Azure instance, which is not what I am after
Upvotes: 0
Views: 202
Reputation: 24569
It seems that we can do that via Azure Resource Template. We could link WebApp source code to GitHub repository, more info please refer to document. We also could create our arm template easily with VS tools. We could add/remove resources as we need. More detail steps please refer to Creating and deploying Azure resource groups through Visual Studio. About how to set template parameters, we could edit the parameter value in the xxx.parameters.json.
Upvotes: 1