civo/terraform-provider-civo

[BUG] Network keeps getting updating in place on every apply the cidr and nameservers

Closed this issue · 0 comments

Description

Apply the following:

terraform {
  required_providers {
    civo = {
      source  = "civo/civo"
      version = "1.0.44"
    }
  }
}

resource "civo_network" "test-issue" {
    label = "test-issue"
}

resource "civo_network" "test-issue2" {
    label = "test-issue2"
}

Then go ahead and apply again after successfully created, you will get this output:

image

Even if you apply these changes, nothing happens, and it will keep asking the same thing again next time you keep applying forever.

This did not happen on version 1.0.41 of the provider, but it happens on 1.0.44