Get the account name and key
The last stage on the Azure side. You copy the storage account’s access key, which is what Sliick Files authenticates with, and end up with the three values Sliick Settings asks for.
1. Copy the account name and access key
Section titled “1. Copy the account name and access key”Sliick authenticates to Azure using the storage account’s shared key, the same secret
used by every Azure SDK by default. Azure provides two keys (key1 and key2) so you
can rotate without downtime.
- Open the storage account.
- In the left sidebar under Security + networking, click Access keys.
- Storage account name is at the top. Write it down; it is the name you set when you created the account.
- Click Show next to key1 and copy the Key value, a long Base64 string
ending in
==.
Treat this key like a root password. It grants full read, write and delete on every blob, file, queue, and table in the entire storage account, and there is no way to scope it to a single container. If you ever need to revoke a credential, regenerate
key1(orkey2) on this same page, then re-enter the new key in Sliick Settings. Usekey2while you rotatekey1, and vice versa.
2. Optional: check the key works
Section titled “2. Optional: check the key works”If you have the Azure CLI installed:
az storage container show \
--account-name YOUR-ACCOUNT-NAME \
--account-key 'YOUR-ACCOUNT-KEY' \
--name YOUR-CONTAINER-NAME
This should return a JSON blob describing the container. If you get
AuthenticationFailed, the key is wrong. If you get ContainerNotFound, the container
name is wrong.
What you now have
Section titled “What you now have”The three values you will need for Salesforce:
- Storage account name
- Account key
- Container name
Next: Salesforce setup.