Azdevify eshopOnWeb
This commit is contained in:
15
infra/core/host/appserviceplan-sites.bicep
Normal file
15
infra/core/host/appserviceplan-sites.bicep
Normal file
@@ -0,0 +1,15 @@
|
||||
param environmentName string
|
||||
param location string = resourceGroup().location
|
||||
|
||||
param sku object = { name: 'B1' }
|
||||
|
||||
module appServicePlanSites 'appserviceplan.bicep' = {
|
||||
name: 'appserviceplan-sites'
|
||||
params: {
|
||||
environmentName: environmentName
|
||||
location: location
|
||||
sku: sku
|
||||
}
|
||||
}
|
||||
|
||||
output appServicePlanId string = appServicePlanSites.outputs.appServicePlanId
|
||||
Reference in New Issue
Block a user