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
Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
If you are interested in working on this issue or have submitted a pull request, please leave a comment.
If an issue is assigned to a user, that user is claiming responsibility for the issue.
Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.
Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
~ update in-place
Terraform will perform the following actions:
# google_compute_instance.vm_instance will be updated in-place
~ resource "google_compute_instance" "vm_instance" {
id = "projects/my-project/zones/us-central1-c/instances/terraform-instance"
name = "terraform-instance"
tags = []
# (23 unchanged attributes hidden)
~ network_interface {
~ internal_ipv6_prefix_length = 0 -> 96
name = "nic0"
# (9 unchanged attributes hidden)
# (1 unchanged block hidden)
}
# (3 unchanged blocks hidden)
}
Plan: 0 to add, 1 to change, 0 to destroy.
google_compute_instance.vm_instance: Modifying... [id=projects/iac-lifting-test/zones/us-central1-c/instances/terraform-instance]
Expected Behavior
After terraform apply once using the configuration above and terraform apply again without any modification on the configuration, nothing should be changed.
Actual Behavior
Terraform thinks the google_compute_instance.network_interface.internal_ipv6_prefix_length is 0 instead of 96 as specified in the configuration, so it plans again and again with the debug output above. What's worse, this trigger the plugin crash as described in #21505
Community Note
Terraform Version & Provider Version(s)
Terraform v1.10.5
on darwin_arm64
Affected Resource(s)
Terraform Configuration
Debug Output
Expected Behavior
After
terraform apply
once using the configuration above andterraform apply
again without any modification on the configuration, nothing should be changed.Actual Behavior
Terraform thinks the
google_compute_instance.network_interface.internal_ipv6_prefix_length
is0
instead of96
as specified in the configuration, so it plans again and again with the debug output above. What's worse, this trigger the plugin crash as described in #21505Steps to reproduce
terraform apply
to create all the resourceterraform apply
again, then we'll see the debug output above as well as the crash message in Google provider plugin crashed when adding network_interface.internal_ipv6_prefix_length in compute_instance #21505Important Factoids
No response
References
No response
The text was updated successfully, but these errors were encountered: