Try to make ordering work without depends_on
This commit is contained in:
parent
10f7366ee8
commit
539de02daf
1
kube.tf
1
kube.tf
|
@ -59,5 +59,4 @@ resource "openstack_compute_volume_attach_v2" "snapvolattach" {
|
||||||
instance_id = openstack_compute_instance_v2.kube[count.index].id
|
instance_id = openstack_compute_instance_v2.kube[count.index].id
|
||||||
volume_id = openstack_blockstorage_volume_v3.kubevolumesnap[count.index].id
|
volume_id = openstack_blockstorage_volume_v3.kubevolumesnap[count.index].id
|
||||||
count = var.kubesize
|
count = var.kubesize
|
||||||
depends_on = [ resource.openstack_compute_instance_v2.kube[count.index] ]
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue