Skip to content

Instantly share code, notes, and snippets.

@GrillPhil
Created April 6, 2023 11:26
Show Gist options
  • Save GrillPhil/e57bc81124bb703e6d6e9639d5f63902 to your computer and use it in GitHub Desktop.
Save GrillPhil/e57bc81124bb703e6d6e9639d5f63902 to your computer and use it in GitHub Desktop.
param envName string
param location string = resourceGroup().location
param webHostNames array = [
'explainthe.cloud'
'www.explainthe.cloud'
]
param docHostName string = 'docs.explainthe.cloud'
param apiHostName string = 'api.explainthe.cloud'
module frontDoor 'services/frontdoor.bicep' = {
name: 'deploy-fd-${envName}'
params: {
name: 'fd-${envName}'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment