Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created January 7, 2024 18:21
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/054318edc2d2617277cae5dc4e017f28 to your computer and use it in GitHub Desktop.
Save johnlokerse/054318edc2d2617277cae5dc4e017f28 to your computer and use it in GitHub Desktop.
Reusability with export and import in Azure Bicep blog
@export()
var region = 'we'
@export()
type tagsType = {
Environment: 'Prod' | 'Dev' | 'QA' | 'Stage' | 'Test'
CostCenter: string
Owner: string
BusinessUnit: string
*: string
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment