Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created January 7, 2024 18:34
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/13342beba5fd609e66443123b80aab31 to your computer and use it in GitHub Desktop.
Save johnlokerse/13342beba5fd609e66443123b80aab31 to your computer and use it in GitHub Desktop.
Reusability with export and import in Azure Bicep blog
using 'keyVault.bicep'
import { region as importRegion } from 'shared.bicep'
param parKeyVaultName = 'kv-${importRegion}-${uniqueString(importRegion)}'
param parTags = {
Environment: 'Prod'
CostCenter: '12345'
Owner: 'John Lokerse'
BusinessUnit: 'IT'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment