-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node pool create: add an implicit dependency on parent cluster #77
Node pool create: add an implicit dependency on parent cluster #77
Conversation
The explicit `depends_on` is not required as there are other ways to signal to Terraform that a resource depends on another. Implicit dependencies are more like TF usually operates.
Note for posterity: The integration CI failure appears spurious:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JordanP thank you for the contribution!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JordanP thanks for making this change! The autogen and root level modules look good, but it doesn't look like this change has propagated to modules/private-cluster
. Could you run make generate
and see if that updates the private cluster module with the implicit dependency?
…depends_on Node pool create: add an implicit dependency on parent cluster
The explicit
depends_on
is not required as there are other waysto signal to Terraform that a resource depends on another. Implicit
dependencies are more like TF usually operates.