You work as a Cloud Application Engineer for MDFT Pro, a well-known training agency that delivers certification courses to students worldwide. Claire, the Web Services Architecture Lead, manages a service consisting of several Azure web apps running in an App Service Plan named PrimaryASP. You’re developing a new web service called ExcelParser that processes student grade spreadsheets and course enrollment Excel files uploaded by instructors. The web app uses a third-party Excel processing library with a licensing restriction that prohibits running multiple instances of the library simultaneously—you can only run a single instance. However, the other web apps in PrimaryASP need to scale out to multiple instances to handle student traffic. You need to configure the App Service Plan to allow ExcelParser to run on exactly one instance while permitting the other apps to scale independently.
How should you configure the App Service Plan using the Set-AzAppServicePlan cmdlet?
Set-AzAppServicePlan `
-ResourceGroupName $rg `
-Name "PrimaryASP" `
________________
Choose the correct answer from the options below.
Explanations for each answer: