I am working on an ASP.NET web application. The idea is that it will be sold as a "package" for simple deployment. I've made webdeploy based ZIP package for deploying directly from IIS (Import Application feature). It allows user to specify all settings (names, users, passwords) in a text fields. Then everything (even database) is deployed, configured and ready to use without any deep knowledge or manual configuration.
I would like to have the same experience when someone would like to deploy my application to Azure. I mean everything should be in one package and person responsible for deployment should only fill in few text boxes to configure and deploy whole application (with database its structure and initial data)
The question is: Is it possible? If yes where can I find any information?
Thanks, Marcin