Skip to content

Instantly share code, notes, and snippets.

@StefanIvemo
Created March 29, 2022 20:24
Show Gist options
  • Save StefanIvemo/1e8c849b5752991a0ebc165b96695832 to your computer and use it in GitHub Desktop.
Save StefanIvemo/1e8c849b5752991a0ebc165b96695832 to your computer and use it in GitHub Desktop.
bicep-loops-syntax
var massiveBiceps = [
'Arnold'
'Sylvester'
'Dolph'
]
resource biceps 'my.provider/strongMan@2021-03-01' = [for name in massiveBiceps: {
name: name
location: resourceGroup().location
}]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment