In reference to issue 19.
The latest version of the virtual machine scale set resource requires the primary setting within the ip_configuration. The current main.tf has this:
And that fails on plan with the error:
Error: module.computegroup.azurerm_virtual_machine_scale_set.vm-linux: "network_profile.0.ip_configuration.0.primary": required field is not set
The plan runs without error. I've updated the main.tf with the change. The value isn't referenced in the variables, so this doesn't really need to be surfaced up to the end user.
In reference to issue 19. The latest version of the virtual machine scale set resource requires the primary setting within the ip_configuration. The current main.tf has this:
And that fails on plan with the error: Error: module.computegroup.azurerm_virtual_machine_scale_set.vm-linux: "network_profile.0.ip_configuration.0.primary": required field is not set
If I change the following to this:
The plan runs without error. I've updated the main.tf with the change. The value isn't referenced in the variables, so this doesn't really need to be surfaced up to the end user.