ttugates
ttugates

Reputation: 6291

What is the difference between Azure Resource Manager & Azure API Management?

Both seem to allow things such as, CRUD on Apps, Database Servers, Databases, or most Azure Resources.

Azure Resource Manager appears Free. Azure API Management is not.

What is the fundamental difference between the two?

Upvotes: 0

Views: 754

Answers (1)

Jesse Carter
Jesse Carter

Reputation: 21147

They are completely different things.

Azure Resource Manager is an API and set of tooling for managing Azure resources. When you use the Azure portal to provision or manage resources, under the hood it's all going through ARM.

Azure API Management is a tool for managing your own APIs and provides things like proxying, authentication, rate limiting, developer portals etc.

Upvotes: 2

Related Questions