terraform-provider-vultr icon indicating copy to clipboard operation
terraform-provider-vultr copied to clipboard

[BUG] - Reserved IPs generating duplicate IPs when using `count` resource option

Open optik-aper opened this issue 2 years ago • 0 comments

Describe the bug When using count option in terraform config, sometimes the created IPs are duplicated. This problem doesn't occur when using the -parallelism=1 flag with the terraform apply

To Reproduce TF config

resource "vultr_reserved_ip" "cloud" {
  count   = 2
  label   = "Test Reserved IP ${count.index + 1}"
  region  = "ewr"
  ip_type = "v4"
}

Expected behavior 2 unique reserved IPs should be created

Screenshots image

optik-aper avatar Aug 30 '22 20:08 optik-aper