VB_
VB_

Reputation: 45722

Azure API Gateways Basic Auth

Does Azure Api Gateways support Basic Auth? I can't find it at feature list. Is there any possibility to integrate it with Key Vault and make Basic Auth with SSL termination?

Upvotes: 0

Views: 824

Answers (1)

Alex
Alex

Reputation: 18556

Azure Application Gateway does not support Basic Auth. Does not support any sort of client authentication, except certificate authentication for the backend bool.

If your application is an API, you can evaluate Azure API Management. This can be used to do basic authentication for your clients and for your backend, though I am not sure how well you can link it with KeyVault. It should work on the ARM template level using dynamic ID references at least.

Upvotes: 2

Related Questions