chroma/lexers/testdata/bicep/bicep-resource-multiple.actual

12 lines
266 B
Text
Raw Permalink Normal View History

2025-03-22 20:46:00 +13:00
@batchSize(3)
resource sa 'Microsoft.Storage/storageAccounts@2019-06-01' = [for storageName in storageAccounts: {
name: storageName
location: location
sku: {
name: storageSKU
}
kind: 'StorageV2'
properties: {
supportsHttpsTrafficOnly: true
}
}]