Created
May 11, 2023 11:59
-
-
Save JeffWouters/098080a7841bcde58755610b92019fe9 to your computer and use it in GitHub Desktop.
main.bicep
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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