Reputation: 45722
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
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