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 ef22c79 commit 2515e0eCopy full SHA for 2515e0e
1 file changed
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