As a part of my testing harness, I'd like to deploy to an Azure Storage Emulator container.
For production releases, I'll use an Azure CLI release task with this command:
call az storage blob sync -s %ReleaseDirectory% -c %ReleaseName% --account-name %AccountName%
This works fine.
The trouble starts when I attempt to create a service connection to the emulator for my testing environment. For creating such a connection, we get this dialog:
See the problem? Subscription ID... Tenant ID... SPN info... none of these exist for an emulator instance. Apparently we can only create a connection to a full-blown Azure Storage account. There doesn't seem to be provision for connecting to an emulator.
Is there another way? How can I create a service connection to an Azure Storage Emulator so that I can use it in Azure-related pipeline tasks?