Home > OS >  Access key rotation for Azure Storage Account
Access key rotation for Azure Storage Account

Time:07-04

I came across this question below.

My question is that is it ok to regenerate key1 and update the connection string with key1 instead of key2 in the first two steps, like below:

enter image description here

CodePudding user response:

No, that is not ok. As soon as key1 is rotated apps may experience connection issues until they are updated. By first rotating key2 and have all apps point to that key there won't be any service disruption when key1 is rotated.

  • Related