Created
April 6, 2023 11:26
-
-
Save GrillPhil/e57bc81124bb703e6d6e9639d5f63902 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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