If I create a VM based on Ubuntu Server 18.04-LTS it has terraform.
If I create a scale set based on Ubuntu Server 18.04-LTS a spawned VM from it does not.
What am I missing?
If I create a VM based on Ubuntu Server 18.04-LTS it has terraform.
If I create a scale set based on Ubuntu Server 18.04-LTS a spawned VM from it does not.
What am I missing?
Generally, if you can create a VM from the image, then you can also create the VMSS from that image. And it does it on my side. Below is the example code for the image and you can get the whole code here:
source_image_reference {
publisher = "Canonical"
offer = "UbuntuServer"
sku = "18.04-LTS"
version = "latest"
}
And the screenshot here shows the result that creates the VMSS through the Terraform: