Trouble Deploying Azure Function App: Getting 403 Access Denied

0
35
Asked By TechWiz42 On

Hey everyone, I've hit a snag while trying to deploy my Azure function app. I'm working on my local machine which is connected to a VNet through a VPN gateway. However, when I attempt to deploy from Visual Studio Code, I keep getting a 403 access denied error. My function is set up in a private subnet with VNet integration, and I've ensured there's no public access. What could I be missing? Any help would be greatly appreciated!

4 Answers

Answered By DevNinja88 On

Just a funny tip: Friends don't let friends do right-click deployments. It's often better to use the command line or proper CI/CD tools to handle deployments.

Answered By TechWiz42 On
Answered By CloudGuru99 On

It sounds like you've run into a classic VNet integration issue. Just a heads up, VNet integration is mainly for outbound calls to your VNet. If you want inbound access to your function app, you'll need to set up a private endpoint instead of relying on public access. That'd probably sort out your deployment problem!

Answered By CloudGuru99 On

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.