DRAG DROP You are developing a Docker/Go using Azure App Service Web App for Containers. You plan to run the container in an App Service on Linux. You identify a Docker container image to use. None of your current resource groups reside in a location that supports Linux. You must minimize the number of resource groups required. You need to create the application and perform an initial deployment. Which three Azure CLI commands should you use to develop the solution? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the correct order.
Not quite, I don't think you need any update commands. The correct order should be: az group create → az appservice plan create → az webapp create. The trap is using update before you've actually created anything. Let me know if anyone disagrees, but that's what I've seen on other exam reports.
az group create → az appservice plan create → az webapp create is the sequence you want. Makes sense since there's no existing group in the right region, then you need the Linux plan before spinning up the container. Seen similar logic in official docs, but if someone caught something I missed, let me know.
az group create > az appservice plan create > az webapp create is the sequence. Resource group first (since none in supported region), then app service plan, then deploy the web app. Pretty sure that's what Microsoft expects here.
