Question

Difficulty: HardConfigure Azure App Services

A company hosts a web application in Azure App Service named app-portal-prod. The application's App Service plan is currently configured for the Basic (B1) tier.

You are tasked with configuring the environment to support the following requirements:
- Enable zero-downtime deployments by using a staging environment to validate changes before routing them to production.
- Configure daily automated backups of the web application content and configuration.

Which two actions should you perform to meet these requirements? (Select two.)

  1. Scale up the App Service plan to the Standard (S1) pricing tier.Answer
  2. Create a deployment slot named staging on the web app.Answer
  3. C
    Configure automated backups directly on the web app while keeping the App Service plan on the Basic (B1) tier.
  4. D
    Enable the deployment slots feature directly on the web app while keeping the App Service plan on the Basic (B1) tier.

Answer

Scale up the App Service plan to the Standard (S1) pricing tier and create a deployment slot named staging on the web app.
Scaling up the App Service plan to the Standard (S1) tier is correct because both deployment slots and custom automated backups require the Standard tier or higher. Creating a deployment slot named staging is correct because it establishes the staging environment needed for testing and zero-downtime swaps.

Step-by-Step Solution

1
Analyze the requirements for deployment slots and custom backups against the current Basic (B1) App Service plan tier.
Identify that both deployment slots and backups require a Standard (S1) tier or higher.
The Basic tier does not support deployment slots or automated custom backups.
2
Propose scaling up the App Service plan.
Scale the App Service plan from Basic (B1) to Standard (S1) tier.
This unlocks the deployment slots and custom backup features required by the scenario.
3
Create a new deployment slot on the web app.
A new slot named staging is successfully created.
This establishes the staging environment necessary for performing zero-downtime swaps.

Key Concept

Azure App Service plan tier features and capabilities, specifically deployment slots and backups.
Rate this question