Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mattruma
mattruma / main.bicep
Last active March 27, 2021 23:28
Adventures with Bicep: How to Create an App Service for Containers
param resourcePrefix string
resource plan 'Microsoft.Web/serverfarms@2020-06-01' = {
name: '${resourcePrefix}plan'
location: resourceGroup().location
sku: {
name: 'B2'
capacity: 1
}
kind: 'linux'