Hi,
We are new to Azure and are going to deploy our first app in the next few days. I was just wondering if we need to have a more clear cut process in place for test and deploy and how to make it more cost effective.
This is the process I was considering -
1.Develop on local Dev fabric
Maintain a common Build server which also hosts source control (we use TFS for both)
Use the build server for local testing which feeds bugs to development
Have a separate azure account for environment testing - Test-passed builds will be deployed to this account and used for environment testing
Once any issues are fixed and the tests pass, deploy the same build to production account (directly from the build server, i could not think of a way to move from azure test to azure production)
Some points I ll have to take care of -
Data will have to be reproduced from Production to Test servers for the testing to be effective
Build activities will have to be automated to reduce manual errors (especially changing account related parameters like keys)
Do you guys this is fine? Or are there any loopholes in this? I wanted to keep Test account and prod account separate so that the security credentials of our prod can be kept with only key operational personnel. This is sort of what is recommended in one of the Microsoft blogs, but I wanted to get it whetted through a team of experts. Thanks in advance.