Azdevify eshopOnWeb

This commit is contained in:
zedy
2022-10-25 14:06:09 +08:00
parent a72dd775ee
commit 04895cc138
37 changed files with 2675 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
param environmentName string
param location string = resourceGroup().location
param sku object = {
name: 'Y1'
tier: 'Dynamic'
size: 'Y1'
family: 'Y'
}
module appServicePlanFunctions 'appserviceplan.bicep' = {
name: 'appserviceplan-functions'
params: {
environmentName: environmentName
location: location
sku: sku
kind: 'functionapp'
}
}
output appServicePlanId string = appServicePlanFunctions.outputs.appServicePlanId