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.
2 parents 14f7d47 + dd050f3 commit 1b9bc7dCopy full SHA for 1b9bc7d
control_planes.tf
@@ -142,6 +142,11 @@ resource "null_resource" "control_plane_config" {
142
provisioner "remote-exec" {
143
inline = [local.k3s_config_update_script]
144
}
145
+
146
+ depends_on = [
147
+ null_resource.first_control_plane,
148
+ hcloud_network_subnet.control_plane
149
+ ]
150
151
152
resource "null_resource" "control_planes" {
init.tf
@@ -323,7 +323,7 @@ resource "null_resource" "kustomization" {
323
324
depends_on = [
325
hcloud_load_balancer.cluster,
326
- null_resource.first_control_plane,
+ null_resource.control_planes,
327
random_password.rancher_bootstrap,
328
hcloud_volume.longhorn_volume
329
]
0 commit comments