I need to change the password and access keys in several Azure resources:
- SQL Database user password
- Storage Account access keys
- Service Bus Namespace shared key
There are 4 websites and 2 cloud services that uses these password and keys to access the resources. The password and keys are accessed by the apps using the CloudConfigurationManager
class.
I can change the password and regenerate the keys in the portal, then go to each website's 'configure' tab and update with the new values but here's the problem: the moment I change those passwords and keys, apps will stop working until I finish to update all of them in the proper setting pages.
How to change them and minimizing the downtime as much as possible?