chroma/lexers/testdata/bicep/bicep-directives.actual
2025-03-22 20:46:00 +13:00

24 lines
No EOL
781 B
Text

var vmProperties = {
diagnosticsProfile: {
bootDiagnostics: {
enabled: 123
storageUri: true
unknownProp: 'asdf'
}
}
evictionPolicy: 'Deallocate'
}
resource vm 'Microsoft.Compute/virtualMachines@2020-12-01' = {
name: 'vm'
location: 'West US'
#disable-next-line BCP036 BCP037
properties: vmProperties
}
#disable-next-line no-unused-params
param storageAccount1 string = 'testStorageAccount'
#disable-next-line no-unused-params
param storageAccount2 string = 'testStorageAccount'
#disable-next-line no-unused-params /* Test comment 1 */
param storageAccount3 string = 'testStorageAccount'
#disable-next-line no-unused-params // Test comment 2
param storageAccount5 string = 'testStorageAccount'