Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Last active September 11, 2023 18:06
Show Gist options
  • Save johnlokerse/5fe93074fcb555fa91e36dd10b64c52d to your computer and use it in GitHub Desktop.
Save johnlokerse/5fe93074fcb555fa91e36dd10b64c52d to your computer and use it in GitHub Desktop.
Azure Bicep Tips and Tricks Blog
@description('Specifies the location for resources.')
param parLocation string = 'westeurope'
module modTagging 'tagging.module.bicep' = {
name: 'build-tagging-object'
}
module modKeyVault 'keyVault.bicep' = {
name: 'deploy-keyvault'
params: {
parName: 'my-keyvault'
parLocation: parLocation
parTags: modTagging.outputs.outTags
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment