user2645138
user2645138

Reputation:

What is the difference between API Gateway provided by Azure API Management and Azure Application Gateway?

I'm new to Azure and I skimmed through Azure official documentation.

I want to understand solution to above questions based on below two compute solutions:

Upvotes: 15

Views: 10559

Answers (1)

Thiago Custodio
Thiago Custodio

Reputation: 18387

Good question, I'll try to answer.

API Gateway is a pattern very common in API scenarios. It act's as a facade where you can transform the incoming/outcoming requests. There are many services which you can use for it:

  • Kong
  • Ocelot
  • Apigee

and on Azure, API Management.

Azure Front Door and Azure Application Gateway (to me), offer more or less the same thing: Load balancer to your services + Web Application Firewall (WAF). If I have to choose one, I will go with Front Door as I think it's easier to setup.

When do we require Application Gateway in front of API Gateway (provided by Api Management)?

Whenever your API will be exposed to the internet. As I said, the benefit is having WAF in front of your APIs, it will block most common attacks (SQL Injection, XSS, etc).

Upvotes: 11

Related Questions