1

I have developed a release pipeline for Azure data Factory which includes blob trigger. The deployment succeeds with exception: LinkedAuthorizationFailed, which results in triggered not being created. Everything else including pipeline and data sets are deployed.Following is the exception I get..

enter image description here

Not sure what is the cause? Any pointers would be helpful.

user2614735
  • 77
  • 2
  • 11

1 Answers1

2

From the error message, your service principal does not have the permission Microsoft.EventGrid/EventSubscriptions/Write on your storage account.

To fix the issue, follow the steps below.

1.Navigate to the Azure Active Directory in the azure portal -> Enterprise applications-> specify the Application Type with All Applications-> search for the Client ID in the error message(the first GUID in message), copy the Name.

enter image description here

2.Navigate to the storage account mentioned in the error message -> Access control (IAM) -> Add -> Add role assignment -> search for the Name copied in step 1 and add it as a Contributor role, then the error should be fixed.

enter image description here

Joy Wang
  • 39,905
  • 3
  • 30
  • 54