Bicep variables
Last updated:
AZUREBICEP
var Identifier =
# Examples
var appServicePlanName = 'toy-product-launch-plan'
- variable loops which can then be used later in the template
var items = [for i in range(1, 5): 'item${i}']
Last updated:
var Identifier =
# Examples
var appServicePlanName = 'toy-product-launch-plan'
var items = [for i in range(1, 5): 'item${i}']