mq-quiz / infra /core /host /staticwebapp.bicep
Pamela Fox
Port to core (appservice/vnet/pg changes made)
9595e1d
raw
history blame
399 Bytes
param name string
param location string = resourceGroup().location
param tags object = {}
param sku object = {
name: 'Free'
tier: 'Free'
}
resource web 'Microsoft.Web/staticSites@2022-03-01' = {
name: name
location: location
tags: tags
sku: sku
properties: {
provider: 'Custom'
}
}
output name string = web.name
output uri string = 'https://${web.properties.defaultHostname}'