You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/app-service/provision-resource-bicep.md
+64Lines changed: 64 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ ms.author: msangapu
6
6
ms.topic: article
7
7
ms.custom: devx-track-bicep
8
8
ms.date: 11/18/2022
9
+
zone_pivot_groups: app-service-bicep
9
10
---
10
11
11
12
# Create App Service app using Bicep
@@ -22,6 +23,8 @@ To effectively create resources with Bicep, you'll need to set up a Bicep [devel
22
23
23
24
## Review the template
24
25
26
+
::: zone pivot="app-service-bicep-linux"
27
+
25
28
The template used in this quickstart is shown below. It deploys an App Service plan and an App Service app on Linux and a sample Node.js "Hello World" app from the [Azure Samples](https://github.com/Azure-Samples) repo.
26
29
27
30
```bicep
@@ -86,6 +89,67 @@ This template contains several parameters that are predefined for your convenien
86
89
87
90
---
88
91
92
+
::: zone-end
93
+
94
+
::: zone pivot="app-service-bicep-windows-containers"
95
+
96
+
The template used in this quickstart is shown below. It deploys an App Service plan and an App Service app on Windows and a sample .NET "Hello World" app from the [Azure Samples](https://github.com/Azure-Samples) repo.
97
+
98
+
```bicep
99
+
param webAppName string = uniqueString(resourceGroup().id) // generate unique name for web app
100
+
param location string = resourceGroup().location // location for all resources
101
+
param sku string = 'P1V3' // The SKU of App Service Plan
0 commit comments