c# - Get default deployment storage in Azure -
i using cloud service classic in azure , when deploy new azure account, have create new cloud storage (which has same name default) using deployment wizard. there way connect storage (get connection string programmatically) service without deploying first, getting connection string azure portal , pasting connection string service configuration file? thank much.
the storage account used temporarily hold deployment package during deployment. not believe configured part of cloud service , cannot set part of cloud service configuration.
you can retrieve storage account via powershell get-azurestorageaccount
, blob container in storage account via powershell get-azurestorageblob -container $containername
Comments
Post a Comment