I am trying to use Azure Managed storage account keys. I succeeded in setting up a managed storage account with 1 day regeneration period for testing purposes. My questions are
Is it possible for me to access this storage account from any other application e.g Storage Explorer, Cloud Explorer, Power BI Desktop etc. If yes, how to get the key?
I still see keys for this storage account in azure portal. Are they invalid ? or will they change every time keyvault regenerates keys for this storage account?
I had set
-ActiveKeyName Key2
. Each time i regenerate the keyKey1
is being regenerated. IfKey1
is regenerated then isKey2
still valid even after 1 day? This active key concept is not so clear in the documentation. Can someone explain it.Is
Sas token
the only way to get access to storage account resources. I just want to have full access to storage account for the regeneration period. is it possible without usingSas token
?I created
SAS Definition
from powershell and createSAS token
out of it whenever i want to access Storage account. I thinkSAS Token
would be invalidated but notSAS Definion
. I am assuming i don't have to handle expiry in the code because i always get newSAS Token
. Am i doing it correctly?