Creating a azure.compute.VirtualMachine() If I cha...
# general
b
Creating a azure.compute.VirtualMachine() If I change the
Copy code
osProfile: {
  customData: `#!/bin/bash\n
    echo "${someConfigValue}"`
}
It does not change the resource according to pulumi cli. Reports All Resources Unchanged, no update or destroy re-create happens. Changing something like
Copy code
vmSize: "SomeOtherSize"
works fine, registers as a change and updates the vm resource.