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.
1 parent a2cc086 commit 3d24799Copy full SHA for 3d24799
main.tf
@@ -234,6 +234,16 @@ resource "aws_eks_addon" "this" {
234
]
235
}
236
237
+ # Note: if an addon needs to be provisioned ahead of a node group users will
238
+ # need to create the addon outside of this module until a 2nd addon resource is added
239
+ # to the module (here) that is not dependent on node groups
240
+ # Or if addon management improves, this dependency can be removed https://github.com/aws/containers-roadmap/issues/1389
241
+ depends_on = [
242
+ module.fargate_profile,
243
+ module.eks_managed_node_group,
244
+ module.self_managed_node_group,
245
+ ]
246
+
247
tags = var.tags
248
249
0 commit comments