Open
Description
Community Note
- 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 Version & Provider Version(s)
Terraform v1.9.8
on darwin_amd64
- provider registry.terraform.io/hashicorp/google v6.10.0
- provider registry.terraform.io/hashicorp/google-beta v6.10.0
Affected Resource(s)
google_alloydb_instance
Terraform Configuration
resource "google_alloydb_instance" "instance-2" {
cluster = google_alloydb_cluster.lab-cluster2.name
instance_id = "lab-cluster2-primary"
instance_type = "PRIMARY"
machine_config {
cpu_count = 2
}
network_config {
enable_public_ip = false
}
database_flags = {"password.enforce_complexity":"true"}
lifecycle {
ignore_changes = [ network_config ]
}
}
Debug Output
# google_alloydb_instance.instance-2 will be updated in-place
~ resource "google_alloydb_instance" "instance-2" {
id = "projects/hc-011e8fe1d3d5432786db758d105/locations/europe-west4/clusters/alloy-2/instances/lab-cluster2-primary"
name = "projects/hc-011e8fe1d3d5432786db758d105/locations/europe-west4/clusters/alloy-2/instances/lab-cluster2-primary"
# (19 unchanged attributes hidden)
+ network_config {
+ enable_public_ip = false
}
# (4 unchanged blocks hidden)
}
Plan: 0 to add, 1 to change, 0 to destroy.
Expected Behavior
no diff should occur:
"network_config": []
Actual Behavior
we get a diff on network_config.enable_public_up
:
# google_alloydb_instance.instance-2 will be updated in-place
~ resource "google_alloydb_instance" "instance-2" {
id = "projects/hc-011e8fe1d3d5432786db758d105/locations/europe-west4/clusters/alloy-2/instances/lab-cluster2-primary"
name = "projects/hc-011e8fe1d3d5432786db758d105/locations/europe-west4/clusters/alloy-2/instances/lab-cluster2-primary"
# (19 unchanged attributes hidden)
+ network_config {
+ enable_public_ip = false
}
# (4 unchanged blocks hidden)
}
Plan: 0 to add, 1 to change, 0 to destroy.
Steps to reproduce
terraform apply
Important Factoids
No response
References
No response