Is your feature request related to a problem? Please describe.
In most of our applications, we would like to connect to azure blob storage using DefaultAzureCredential and not using the connectionString. However, this needs the azurite container to be listening on a https endpoint with oauth enabled.
Describe the solution you'd like
There should be an option/property to enable https for embedded azurite container.
Describe alternatives you've considered
The current alternative we are having to work with is to extract the BlobServiceClient building logic out into an interface and implement it using connection String while running the tests while the source code still builds it using DefaultAzureCredential.