Select from the dropdown lists to complete the text.
A company is developing a Java web app. The web app code is hosted in a GitHub repository located at https://github.com/Contoso/webapp.
The web app must be evaluated before it is moved to production. You must deploy the initial code release to a deployment slot named staging.
You need to create the web app and deploy the code.
How should you complete the commands? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Answer Area:
gitrepo=https://github.com/Contoso/webapp
webappname=businesswebapp
resourcegroupname=BusinessAppResourceGroup
az ( group, webapp, appservice plan, webapp deployment slot, webapp deployment source ) create --location centralus --name $resourcegroupname
az ( group, webapp, appservice plan, webapp deployment slot, webapp deployment source ) create --name $webappname --resource-group $resourcegroupname --sku S3
az ( group, webapp, appservice plan, webapp deployment slot, webapp deployment source ) create --name $webappname --resource-group $resourcegroupname --plan $webappname
az ( group, webapp, appservice plan, webapp deployment slot, webapp deployment source ) create --name $webappname --resource-group $resourcegroupname --slot staging
az ( group, webapp, appservice plan, webapp deployment slot, webapp deployment source ) config --name $webappname --resource-group $resourcegroupname --slot staging --repo-url $gitrepo --branch master --manual integration