Skip to content

Instantly share code, notes, and snippets.

@JeffWouters
Created May 11, 2023 11:59
Show Gist options
  • Select an option

  • Save JeffWouters/098080a7841bcde58755610b92019fe9 to your computer and use it in GitHub Desktop.

Select an option

Save JeffWouters/098080a7841bcde58755610b92019fe9 to your computer and use it in GitHub Desktop.
main.bicep
targetScope = 'subscription'
@description('Specifies the location for resources.')
param location string
param name string
resource rg 'Microsoft.Resources/resourceGroups@2022-09-01' = {
name: name
location: location
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment