Hello,
I have created containers inside of Data Lake Gen2 and I would like to grand privileges to a service principal to access the data within the containers.
I want to use Terraform for the same task as discribed here: Use the Azure portal to manage ACLs in Azure Data Lake Storage Gen2 - Azure Storage | Microsoft Learn.
I expect something like this:
resource “azurerm_key_vault_access_policy” “factory” {
key_vault_id = azurerm_key_vault.nd.id
tenant_id = data.azurerm_client_config.current.tenant_id
object_id = data.azuread_service_principal.ndfactory.object_id
key_permissions = [“Get”, “List”]
secret_permissions = [“Get”, “List”]
certificate_permissions = [“Get”, “List”]
}
but for storage containers.