1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

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
+2
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]
}