Files
eShopOnWeb/infra/core/host/appserviceplan.bicep
2022-11-18 10:25:09 +08:00

21 lines
380 B
Bicep

param name string
param location string = resourceGroup().location
param tags object = {}
param kind string = ''
param reserved bool = true
param sku object
resource appServicePlan 'Microsoft.Web/serverfarms@2022-03-01' = {
name: name
location: location
tags: tags
sku: sku
kind: kind
properties: {
reserved: reserved
}
}
output id string = appServicePlan.id