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

18
infra/app/web.bicep Normal file
View File

@@ -0,0 +1,18 @@
param environmentName string
param location string = resourceGroup().location
param appServicePlanId string
param serviceName string = 'web'
module web '../core/host/appservice-dotnet.bicep' = {
name: '${serviceName}-appservice-dotnet-module'
params: {
environmentName: environmentName
location: location
appServicePlanId: appServicePlanId
serviceName: serviceName
}
}
output WEB_NAME string = web.outputs.name
output WEB_URI string = web.outputs.uri