feat: Add a homemade depends_on for MNG submodule to ensure ordering of resource creation (#867)

This commit is contained in:
Thierno IB. BARRY
2020-06-28 02:31:23 +02:00
committed by GitHub
parent 1e4a908a95
commit 616d30ec67
5 changed files with 27 additions and 19 deletions

View File

@@ -18,4 +18,6 @@ resource "random_pet" "node_groups" {
subnet_ids = join("|", each.value["subnets"])
node_group_name = join("-", [var.cluster_name, each.key])
}
depends_on = [var.ng_depends_on]
}