Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created January 7, 2024 18:26
Show Gist options
  • Save johnlokerse/2d3c104b42c91728739bd746caaf7057 to your computer and use it in GitHub Desktop.
Save johnlokerse/2d3c104b42c91728739bd746caaf7057 to your computer and use it in GitHub Desktop.
Reusability with export and import in Azure Bicep blog
import { region, tagsType } from 'shared.bicep'
output outRegion string = region
output outTags tagsType = {
Environment: 'Dev'
CostCenter: '12345'
BusinessUnit: 'IT'
Owner: 'John Lokerse'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment