Complete the code to specify the pricing tier for an Azure App Service plan.
az appservice plan create --name myPlan --resource-group myResourceGroup --sku [1]The pricing tier is specified using the SKU code like 'B1' for Basic tier.
Complete the code to create an App Service plan with the correct pricing tier for production workloads.
az appservice plan create --name prodPlan --resource-group prodGroup --sku [1]The Standard tier 'S1' is suitable for production workloads.
Fix the error in the command to create an App Service plan with the PremiumV2 tier.
az appservice plan create --name premiumPlan --resource-group rg1 --sku [1]The correct SKU code for PremiumV2 tier is 'P1v2'.
Fill both blanks to create an App Service plan with the correct SKU and specify the operating system as Linux.
az appservice plan create --name linuxPlan --resource-group rgLinux --sku [1] --is-linux [2]
Use 'B1' for Basic tier and '--is-linux true' to specify Linux OS.
Fill all three blanks to create a PremiumV3 tier App Service plan with 3 instances and enable zone redundancy.
az appservice plan create --name stdPlan --resource-group rgStd --sku [1] --number-of-workers [2] --zone-redundant [3]
Use 'P1v3' for PremiumV3 tier, set 3 instances, and enable zone redundancy with 'true'.