admin管理员组

文章数量:1332971

Im trying to make my environment little bit more secure. I have added the Private endpoint for my Storage account.

But now the isse is that my logic app cant reach and fails

"body": {
    "message": "AuthorizationFailure\r\nclientRequestId: 7772864e-9a15-41ca-b02f-xxxxx",
    "status": 403,
    "error": {
        "message": "AuthorizationFailure"
    },
    "source": "azureblob-we.azconn-we-003.p.azurewebsites"
}

Logic is something new to me so I would appreciate your input on how to add the Vnet integration to already exisitng logic app.

The sources I found in google I think they are little bit over dates cause my UI is slightly different as I dont see anywhere "networking" tab under settings in the left side panel.

Im trying to make my environment little bit more secure. I have added the Private endpoint for my Storage account.

But now the isse is that my logic app cant reach and fails

"body": {
    "message": "AuthorizationFailure\r\nclientRequestId: 7772864e-9a15-41ca-b02f-xxxxx",
    "status": 403,
    "error": {
        "message": "AuthorizationFailure"
    },
    "source": "azureblob-we.azconn-we-003.p.azurewebsites"
}

Logic is something new to me so I would appreciate your input on how to add the Vnet integration to already exisitng logic app.

The sources I found in google I think they are little bit over dates cause my UI is slightly different as I dont see anywhere "networking" tab under settings in the left side panel.

Share Improve this question asked Nov 20, 2024 at 16:13 play_something_goodplay_something_good 1412 silver badges12 bronze badges 1
  • Which plan are you using? – RithwikBojja Commented Nov 21, 2024 at 3:30
Add a comment  | 

1 Answer 1

Reset to default 1

I dont see anywhere "networking" tab under settings in the left side panel.

Yes, you will not have Networking for Consumption plan. If you want to use Vnet Integration, you will have to use Standard Plan for Logic app.

Logic is something new to me so I would appreciate your input on how to add the Vnet integration to already exisitng logic app.

Firstly, create Logic app with Standard Plan and then in Settings, click on Networking:

Then in Storage account create/add a vnet:

Then in Logic app Networking, click on Not Configured as below:

Then Integrate vnet :

Then vnet gets integrated:

Note: Make sure both Logic app and Storage account and vnet are in Same Location.

So, you have to migrate or create a new logic app with standard plan to use Networking with it.

Also for information on Vnet integration refer SO-Thread.

本文标签: azureLogic App AuthorizationFailurevnet integration neededStack Overflow