aws vs azure

Copper Contributor

My employer wants to use app services for deploying a blazor wasm application. It uses a jwt token from Azure AD for security to talk with an API that is in another app service.  Most of my cloud experience is in aws. For my reference, what is the service in AWS that resembles AZure app service. Secondly, are there any examples of deploying blazor wasm app to an app service. I'm assuming there is some dns type stuff that has to be setup ...etc.  Any good articles or learning labs that I can do to come up to speed with this.

1 Reply
App Service is highly managed web app hosting service. From an infra perspective a web app is running on either IIS/Windows or NGINX/Linux underneath the hood.
For examples, the MS lean example for Blazor here : https://docs.microsoft.com/en-us/learn/modules/publish-app-service-static-web-app-api-dotnet/ uses Static Web Apps with a Functions backend. Just bingoogling around though there are a number of blog posts showing using Blazor with regular App Service as well.