Reputation: 16823
How can you use Managed Identity authentication and the Blob connector?
The blob API Connector only seems to have an option to enter a SAS key, not to use Managed Identity.
I can do "raw HTTP" requests, e.g. access-to-blob-storage-using-managed-identity-in-logic-apps, but then I lose all the Blob actions, e.g. "List Blobs".
So is there anyway to have the nice features of the Blob actions, and use Managed Identity?
Upvotes: 2
Views: 1394
Reputation: 20127
So is there anyway to have the nice features of the Blob actions, and use Managed Identity?
I test in my site and can use blob action with Managed Identity. You could refer to the following steps to do it.
1.Go to your logic app > Identity
> turn on System assigned
Managed Identity.
2.Go to your Storage > Access control
> Add role assignment
and add your logic app with Storage Blob Data Control
role like below:
3.Then you could list blob in logic app.Use the following designer:
And the output is as below:
Upvotes: 2