terraform-provider-vultr
terraform-provider-vultr copied to clipboard
[BUG] - Reserved IPs generating duplicate IPs when using `count` resource option
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