There is a backward incompatibility in terraform-aws-service-catalog for eks-cluster v0.63.4 #138
-
I am upgrading my What can I do to avoid the worker node recreation? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Beta Was this translation helpful? Give feedback.
-
I have identified the root cause for this diff. It is caused by this PR, https://github.com/gruntwork-io/terraform-aws-service-catalog/pull/994, which introduced a new I have confirmed that running the following should resolve this recreation:
Once the |
Beta Was this translation helpful? Give feedback.
I have identified the root cause for this diff. It is caused by this PR, https://github.com/gruntwork-io/terraform-aws-service-catalog/pull/994, which introduced a new
null_resource
that is skewing the dependency chain.I have confirmed that running the following should resolve this recreation:
Once the
null_resource
is created, everything should be knowable at plan time and thus avoid all the recreations. This applies to both self managed and managed worker nodes.