Complete the code to create a basic Azure App Service plan using PaaS.
az appservice plan create --name MyPlan --resource-group MyResourceGroup --sku [1]The SKU 'B1' is a valid basic tier for Azure App Service plans, suitable for PaaS deployment.
Complete the code to deploy a web app to the App Service plan.
az webapp create --resource-group MyResourceGroup --plan MyPlan --name MyUniqueAppName --runtime [1]The runtime 'node|14-lts' specifies a Node.js environment, which is valid for web app deployment on Azure PaaS.
Fix the error in the command to scale the App Service plan to 3 instances.
az appservice plan update --name MyPlan --resource-group MyResourceGroup --number-of-workers [1]The parameter '--number-of-workers' expects a number, so '3' is the correct value to scale to three instances.
Fill both blanks to configure continuous deployment from GitHub.
az webapp deployment source config --name MyUniqueAppName --resource-group MyResourceGroup --repo-url [1] --branch [2]
The repo URL must be a GitHub URL, and 'main' is the default branch name for many repositories.
Fill all three blanks to create an App Service with a custom startup command and enable HTTPS.
az webapp create --resource-group MyResourceGroup --plan MyPlan --name MyUniqueAppName --runtime [1] --startup-file [2] --https-only [3]
The runtime is Python 3.9, the startup file is 'startup.sh', and HTTPS is enabled by setting '--https-only' to true.