mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-13 05:45:12 +01:00
feat: Add a homemade depends_on for MNG submodule to ensure ordering of resource creation (#867)
This commit is contained in:
committed by
GitHub
parent
1e4a908a95
commit
616d30ec67
@@ -34,3 +34,11 @@ variable "node_groups" {
|
||||
type = any
|
||||
default = {}
|
||||
}
|
||||
|
||||
# Hack for a homemade `depends_on` https://discuss.hashicorp.com/t/tips-howto-implement-module-depends-on-emulation/2305/2
|
||||
# Will be removed in Terraform 0.13 with the support of module's `depends_on` https://github.com/hashicorp/terraform/issues/10462
|
||||
variable "ng_depends_on" {
|
||||
description = "List of references to other resources this submodule depends on"
|
||||
type = any
|
||||
default = null
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user