HOTSPOT You are creating a CLI script that creates an Azure web app related services in Azure App Service. The web app uses the following variables: 
az webapp deployment source config here. HTTPS://KXBJSYUHCEGGSYVXDKOF.SUPABASE.CO/STORAGE/V1/OBJECT/PUBLIC/FILE-IMAGES/AZ-204/PAGE_176_IMG_1.JPG
HTTPS://KXBJSYUHCEGGSYVXDKOF.SUPABASE.CO/STORAGE/V1/OBJECT/PUBLIC/FILE-IMAGES/AZ-204/PAGE_176_IMG_1.JPG
Looks right to use the config command but I picked the screenshot with the FTP setup by mistake. GitHub integration is better handled with az webapp deployment source config and repo URL, but I thought FTP would trigger sync too. Not totally sure, feel free to correct me.
HOTSPOT You develop a containerized application. You plan to deploy the application to a new Azure Container instance by using a third-party continuous integration and continuous delivery (CI/CD) utility. The deployment must be unattended and include all application assets. The third-party utility must only be able to push and pull images from the registry. The authentication must be managed by Azure Active Directory (Azure AD). The solution must use the principle of least privilege. You need to ensure that the third-party utility can access the registry. Which authentication options should you use? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
Totally agree with using a service principal and AcrPush. That combo gives the CI/CD tool just enough rights for push and pull, nothing extra. Contributor is way too broad for this kind of setup. I think this lines up with both the exam's least privilege angle and how you'd do it in real life, but open if anyone hit issues doing it another way.
DRAG DROP An organization plans to deploy Azure storage services. You need to configure shared access signature (SAS) for granting access to Azure Storage. Which SAS types should you use? To answer, drag the appropriate SAS types to the correct requirements. Each SAS type may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.
Service-level -> Delegate access to a resource in a single storage service
User delegation -> Secure a resource by using Azure AD credentials.
Nice, the requirements are really clear here. Pretty sure this matches what I've seen on practice sets.
DRAG DROP You are developing a microservices solution. You plan to deploy the solution to a multinode Azure Kubernetes Service (AKS) cluster. You need to deploy a solution that includes the following features: reverse proxy capabilities configurable traffic routing TLS termination with a custom certificate Which components should you use? To answer, drag the appropriate components to the correct requirements. Each component may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.
D but does the shipping data sit in a relational database like SQL Server, or is it in NoSQL/Cosmos format? If it's Cosmos or MongoDB style, B might actually make sense. Had something like this in a mock, the tech stack changed the answer.
HOTSPOT You are developing an Azure Web App. You configure TLS mutual authentication for the web app. You need to validate the client certificate in the web app. To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
DRAG DROP You need to ensure that PolicyLib requirements are met. How should you complete the code segment? To answer, drag the appropriate code segments to the correct locations. Each code segment may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.
ITelemetry Initializer, Initialize, telemetry.Context, EventGridController.EventId.Value. That matches the Application Insights extension pattern for tagging telemetry. ITelemetryProcessor is just for filtering, not adding properties. I think this fits the PolicyLib ask, but if you see a catch let me know.
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.
HOTSPOT You are creating an app that uses Event Grid to connect with other services. Your app's event data will be sent to a serverless function that checks compliance. This function is maintained by your company. You write a new event subscription at the scope of your resource. The event must be invalidated after a specific period of time. You need to configure Event Grid to ensure security. What should you implement? To answer, select the appropriate options in [he answer area. NOTE: Each correct selection is worth one point
Wait, does "must be invalidated after a specific period" mean just for the event subscription authentication, or for each event delivery? If it's about temporary access to the endpoint, SAS tokens fit, but if it's ongoing validation, the answer might change.







