Hello,
I have an Azure Function that is triggered when a blob is uploaded to nested directory within a DataLake Gen2 storage container.
- I do not want to give the Function permissions on the entire DataLake (via connection string in Function app settings).
- Instead, I need to scope the Function's credentials down to a single, nested namespace.
How is this done?
Tried so far:
How do we scope permissions to a DataLake namespace in a way compatible with Azure Functions?
Thank you
Hello,
I have an Azure Function that is triggered when a blob is uploaded to nested directory within a DataLake Gen2 storage container.
How is this done?
Tried so far:
It appears SAS tokens can only be generated at the first level of the DataLake (container level).
It appears Access Control Lists do not handle this scenario either.
How do we scope permissions to a DataLake namespace in a way compatible with Azure Functions?
Thank you