Fixes to NodeJS version.

This commit is contained in:
2026-04-19 20:47:47 +02:00
parent aca4998da7
commit 176fa5ead2
28 changed files with 686 additions and 134 deletions

View File

@@ -0,0 +1,14 @@
resource virtualMachine 'Microsoft.Compute/virtualMachines@2024-03-01' = {
name: 'example-vm'
location: resourceGroup().location
properties: {
storageProfile: {
imageReference: {
publisher: '{{ publisher }}'
offer: '{{ offer }}'
sku: '{{ sku }}'
version: '{{ version }}'
}
}
}
}