[Build and Deploy Staging Site] Publish from microsoft/azuretipsandtricks-private:main/src/blog

This commit is contained in:
erjuntun75 2022-01-05 15:58:57 +00:00
Родитель 495b9690cc
Коммит 4e3477a21d
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -55,7 +55,7 @@ That's it. We are now ready to use Bicep.
2. We'll create an [App Service Plan](https://docs.microsoft.com/azure/app-service/overview-hosting-plans?WT.mc_id=docs-azuredevtips-azureappsdev) and an [App Service Web App](https://azure.microsoft.com/services/app-service/web/?WT.mc_id=azure-azuredevtips-azureappsdev). Type **"app"**. This triggers a dropdown of code snippets that you can use. Select the **res-app-plan** snippet. Code snippets create a template of standard code. You now have code that creates an App Service Plan resource
3. Type **"web"** and select the **res-web-app** snippet. This one creates an App Service Web App resource
<img :src="$withBase('/files/131snippets.png')">
<img :src="$withBase('/files/131snippets.png')" width="75%">
(Bicep code snippets)
@ -107,7 +107,7 @@ az deployment group create --resource-group INSERTYOURRESOURCEGROUP --template-f
After a while, your Azure App Service Plan and Azure Web App will be successfully deployed. The deployment itself was done using an ARM template, that the Bicep language was transpiled into, as Bicep is as an abstraction on top of ARM.
<img :src="$withBase('/files/131result.png')">
<img :src="$withBase('/files/131result.png')" width="75%">
(Resources successfully deployed from a Bicep template)