Hi @Stubbs Tristan ,
Thanks for contacting Microsoft Q&A platform.
If you previously deployed the scale set with the az vmss create
command, you can run the az vmss create
command again to update the scale set. Make sure that all properties in the az vmss create
command are the same as before, except for the properties that you wish to modify.
Once the scale set model is updated, the new configuration applies to any new VMs created in the scale set. However, the models for the existing VMs in the scale set must still be brought up-to-date with the latest overall scale set model. In the model for each VM is a boolean property called latestModelApplied
that indicates whether or not the VM is up-to-date with the latest overall scale set model (true
means the VM is up-to-date with the latest model).
You can find this in the Modify a Scale Set documentation mentioned below. https://learn.microsoft.com/en-us/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-upgrade-scale-set#how-to-update-global-scale-set-properties
Hope this helps you.