BrainyBeeBrainyBee
ExploreBlogStart Studying
HomeMicrosoft Azure Administrator (AZ-104)Cram sheet — Create and configure Azure App Service
Topic Cram Sheet577 words

Cram sheet — Create and configure Azure App Service

AZ-104 › Unit 3 › Create and configure Azure App Service

Cram sheet — Create and configure Azure App Service

Create and configure Azure App Service

Node
AZ104-U3.T4
Objectives
8
Bank questions
28
Grounded documents
7

Eight objectives, and almost every trap lives in one place: the plan and the app are separate objects, and the plan owns the capacity. Read every stem for which of the two it is really about.

Scale up and scale out are different controls

  • Scale up changes the pricing tier — more CPU, memory, disk, or features such as custom domains, certificates, staging slots and autoscaling.
  • Scale out changes the number of VM instances. Basic, Standard and Premium plans scale out to as many as 3, 10 and 30 instances respectively.
  • ⚠ In the Free and Shared tiers an app gets CPU minutes on a shared VM and cannot scale out at all. If a stem requires more instances, those two tiers are eliminated before you read further.

The plan owns the capacity

  • All apps in an App Service plan scale together, because they share the same VM instances. Scaling the plan — manually or by autoscale rule — affects every app in it.
  • Only apps in the same plan share VM instances. Isolating one noisy app means moving it to its own plan, not tuning it in place.
  • Free and Shared run apps on the same VM as other customers' apps. IsolatedV2 runs on dedicated VMs in dedicated virtual networks.

Deployment slots

  • Slots require Standard, Premium or Isolated. That is the tier gate, and it is asked directly.
  • All instances of the source slot are warmed up before the swap, so there is no downtime and no dropped requests. A swap is a switch of routing rules, not a copy.
  • ⚠ After a swap, the staging slot holds the previous production app. So the rollback for a bad release is to swap again immediately — that is the documented way back to the last known good site, and it is a favourite question.
  • Auto swap exists for when pre-swap validation is not needed.

Certificates, domains, backup, networking

  • The free App Service managed certificate is fully managed and automatically renewed, with its bindings updated for you. A private certificate you upload must be a password-protected PFX.
  • DNS mapping: a root domain needs an A record — the documentation says explicitly not to use CNAME for the root. A subdomain uses CNAME, which is less susceptible to the app's IP changing.
  • Backup is supported in Basic, Standard, Premium and Isolated. ⚠ In Basic you can back up and restore the production slot only. Automatic backups are capped at 30 GB; custom backups at 10 GB, of which 4 GB may be a linked database.
  • ⚠ Virtual network integration is outbound only. It gives your app access to resources in the network; it does not grant inbound private access to your app. Inbound private access is a private endpoint, which is a different feature.

Ask which object the requirement names

Tier, instance count and autoscale belong to the plan. Slots, certificates, custom domains, backup and network integration belong to the app but are gated by the plan's tier. A stem that says several apps are affected is a plan question; one that says a release must be reversible in seconds is a slot question.

Traps

Where Unit 3 Topic 4 catches people

Scaling out on Free or Shared, which cannot. Tuning one app's capacity without noticing every app on the plan moves with it. Recreating a release from source to roll back instead of swapping again. Expecting virtual network integration to let traffic reach the app from the network. Expecting slot support below Standard, or full backup coverage on Basic. Using a CNAME for a root domain.

Check yourself

Loading flashcards…

Where these figures come from

Every figure above was read from the raw documentation below on the day this sheet was written. The sha1 is git hash-object over the bytes as fetched, so a doc that changes underneath this sheet can be detected rather than assumed.

Documentsha1
Scale up an app in Azure App Servicecd41383af9d9
Azure App Service plan overview031c5af27b95
Set up staging environments in Azure App Service2d0b4578ba9a
Add and manage TLS/SSL certificates in Azure App Service4c2b49f93cc7
Map an existing custom DNS name to Azure App Service6da140febfe3
Back up and restore your app in Azure App Service87d4207ec7f2
Integrate your app with an Azure virtual networkf9288fe93879
All Microsoft Azure Administrator (AZ-104) Study Resources

Related Notes

  • AZ-104 exam map391 words
  • Unit 1 roadmap — Manage Azure identities and governance358 words
  • Unit 1 capstone — Onboarding an acquired subsidiary810 words
  • Lab — A budget notifies and stops nothing166 words
  • Lab — Prove that inheritance only flows one way212 words
  • Lab — Tags do not inherit, and a lock is not a permission204 words
  • Lab — Watch a dynamic group fill itself in183 words
  • Cram sheet — Manage access to Azure resources447 words
  • Cram sheet — Manage Azure subscriptions and governance841 words
  • Cram sheet — Manage Microsoft Entra users and groups580 words
  • Unit 2 roadmap — Implement and manage storage375 words
  • Unit 2 capstone — A media archive on a budget808 words

Ready to study Microsoft Azure Administrator (AZ-104)?

Practice tests, flashcards, and all study notes — free, no sign-up.

Start Studying

Ready to study Microsoft Azure Administrator (AZ-104)?

Practice tests, flashcards, and all study notes — free, no sign-up needed.

Start Studying — Free
Microsoft Azure Administrator (AZ-104) ResourcesExplore All HivesBlogHome

© 2026 BrainyBee. Free AI-powered exam prep.

Cram check — Create and configure Azure App Service

Card 1 of 6

Front of flashcard 1 of 6

How far out do Basic, Standard and Premium plans scale?

medium

3, 10 and 30 instances respectively. Free and Shared cannot scale out at all.

az-104az104:unit:3cram

Cram check — Create and configure Azure App Service

Card 1

Front

How far out do Basic, Standard and Premium plans scale?

Back

3, 10 and 30 instances respectively. Free and Shared cannot scale out at all.

Card 2

Front

You scale one app's plan. What happens to the other apps on it?

Back

They scale too. All apps in a plan share its VM instances and scale together.

Card 3

Front

A swap put a broken release into production. What is the fastest way back?

Back

Swap again immediately — after a swap the staging slot holds the previous production app.

Card 4

Front

Does virtual network integration let clients in the VNet reach your app?

Back

No. It is outbound only. Inbound private access needs a private endpoint.

Card 5

Front

Which record type maps a ROOT domain to App Service?

Back

An A record. The documentation says explicitly not to use a CNAME for the root; subdomains use CNAME.

Card 6

Front

What is the backup limitation on the Basic tier?

Back

You can back up and restore the production slot only. Automatic backups cap at 30 GB, custom at 10 GB.

Cram check — Create and configure Azure App Service

Card 1

Front

How far out do Basic, Standard and Premium plans scale?

Back

3, 10 and 30 instances respectively. Free and Shared cannot scale out at all.

Card 2

Front

You scale one app's plan. What happens to the other apps on it?

Back

They scale too. All apps in a plan share its VM instances and scale together.

Card 3

Front

A swap put a broken release into production. What is the fastest way back?

Back

Swap again immediately — after a swap the staging slot holds the previous production app.

Card 4

Front

Does virtual network integration let clients in the VNet reach your app?

Back

No. It is outbound only. Inbound private access needs a private endpoint.

Card 5

Front

Which record type maps a ROOT domain to App Service?

Back

An A record. The documentation says explicitly not to use a CNAME for the root; subdomains use CNAME.

Card 6

Front

What is the backup limitation on the Basic tier?

Back

You can back up and restore the production slot only. Automatic backups cap at 30 GB, custom at 10 GB.