I'm trying to map a blob storage from my storage account into my databricks cluster. I'm following this link and here apparently I just need to execute this code in my notebook:
Code python:
dbutils.fs.mount(
source = "wasbs://<your-container-name>@<your-storage-account-name>.blob.core.windows.net",
mount_point = "/mnt/<mount-name>",
extra_configs = {"<conf-key>":dbutils.secrets.get(scope = "<scope-name>", key = "<key-name>")})
I'm stuck in the parameters : (scope = "<scope-name>", key = "<key-name>"). I know that in order to create an scope i can follow this link, later I suppose to navigate my clister throughout the Databricks CLI and catch the <scope-name> and <key-name>. However, when I check my cluster I just get the scope name and I can't find the key name anywhere or at lkeast I dont know how to get it.
Tried on Databricks CLI:
Where can I generate or find the <key-name>
