You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest version of azurerm_virtual_machine_scale_set requires primary to be set in ip configurations: Running the current code results in the following error:
Error: module.consul_servers.azurerm_virtual_machine_scale_set.consul_with_load_balancer: "network_profile.0.ip_configuration.0.primary": required field is not set
When the following change is made to consul-cluster main.tf then terraform plan runs correctly:
network_profile {
name = "ConsulNetworkProfile"
primary = true
The latest version of azurerm_virtual_machine_scale_set requires primary to be set in ip configurations: Running the current code results in the following error:
Error: module.consul_servers.azurerm_virtual_machine_scale_set.consul_with_load_balancer: "network_profile.0.ip_configuration.0.primary": required field is not set
When the following change is made to consul-cluster main.tf then terraform plan runs correctly:
network_profile {
name = "ConsulNetworkProfile"
primary = true
}
The text was updated successfully, but these errors were encountered: