We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fad0ff4 commit a084f1cCopy full SHA for a084f1c
environments/site/tofu/control.tf
@@ -34,6 +34,10 @@ resource "openstack_networking_port_v2" "control" {
34
binding {
35
vnic_type = lookup(var.vnic_types, each.key, "normal")
36
}
37
+
38
+ lifecycle {
39
+ ignore_changes = [ binding ]
40
+ }
41
42
43
resource "openstack_compute_instance_v2" "control" {
environments/site/tofu/node_group/nodes.tf
@@ -71,6 +71,10 @@ resource "openstack_networking_port_v2" "compute" {
71
72
vnic_type = lookup(var.vnic_types, each.value.net.network, "normal")
73
74
75
76
77
78
79
80
resource "openstack_compute_instance_v2" "compute_fixed_image" {
0 commit comments