Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created September 11, 2023 18:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnlokerse/95abd6be835855df1d39516322a803f0 to your computer and use it in GitHub Desktop.
Save johnlokerse/95abd6be835855df1d39516322a803f0 to your computer and use it in GitHub Desktop.
Azure Bicep Tips and Tricks Blog
@description('Specific tags for resources')
param parUserDefinedTags object = {}
param parDeploymentDate string = utcNow('yyyy-MM-dd')
var varDefaultTags = {
DeploymentDate: parDeploymentDate
}
output outTags object = union(parUserDefinedTags, varDefaultTags)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment