Hi everyone. Testing the new Azure-Nextgen, and I'...
# azure
c
Hi everyone. Testing the new Azure-Nextgen, and I'm wondering what replaces the removed PrimaryConnectionString from Account (now StorageAccount) object?
t
Azure doesn’t return any sensitive data in ARM create/update responses, so you have to explicitly call a
listKeys
function and build the string with it, see an example here https://github.com/mikhailshilkov/azure-serverless-workshop/blob/master/02-serverless/code/step5.ts#L31-L35
c
Thank you, i was almost there after finding something similar in the samples. 🙂