adventurous-camera-87788
07/06/2021, 10:50 PMconst storageAccount = new azure_native.storage.StorageAccount(storageAccountName, {
accountName: storageAccountName,
resourceGroupName: resourceGroup.name,
location: resourceGroup.location,
sku: {
name: 'Standard_GRS'
},
kind: 'StorageV2'
});
I am trying to figure out how to get the primary connection string from this instance. Does anyone know how to do that? I noticed standard storage account using the Azure library (not azure native) has a property primaryConnectionString
that can be used as an output. Does something similar exist for the azure-native version of the storage account? Any help is appreciated.brave-planet-10645
07/07/2021, 10:04 AMadventurous-camera-87788
07/08/2021, 6:50 PM<https://pulumi-community.slack.com/archives/C01PF3E1B8V/p1625770120386200>
. It feels like a similar problem but I just can’t make the connection on how the previous solution & this problem are related.