Is there a way of using a SAS (shared access signature) to access an Azure storage container from the CLI?
It's clearly possible using an account name and a key, or using a connection string. But I want to use the CLI in a script that should only be able to read from a container.
--sas
argument takes only the sas parameters and signatures. Not the whole uri. Also, the sas contains characters that have to be escaped in some cases (%
,&
etc). Make sure you do that. – Whisenhunt