-
Notifications
You must be signed in to change notification settings - Fork 106
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
Upgrade Terragrunt Version #338
base: master
Are you sure you want to change the base?
Conversation
This picks up a version of the terragrunt repository that has a AWS SDK that supports EKS Pod Identity. While this is far from the latest terragrunt version, at least this provides some benefit while the much larger work required to upgrade to latest.
cmd/parse_locals.go
Outdated
@@ -113,20 +113,20 @@ func parseLocals(path string, terragruntOptions *options.TerragruntOptions, incl | |||
} | |||
|
|||
// Decode just the Base blocks. See the function docs for DecodeBaseBlocks for more info on what base blocks are. | |||
localsAsCty, trackInclude, err := config.DecodeBaseBlocks(terragruntOptions, parser, file, path, includeFromChild, nil) | |||
createExtensions, err := config.DecodeBaseBlocks(terragruntOptions, parser, file, path, includeFromChild, nil) |
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.
What is createExtensions
? I don't see this in https://github.com/gruntwork-io/terragrunt/blob/main/config/config.go#L853
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.
You're looking at main
. This is upgrading to v0.54.13
. https://github.com/gruntwork-io/terragrunt/blob/v0.54.13/config/config.go#L853
I think I meant to say contextExtensions
to keep in line with what that version says. Fixed.
@rubensf, I am looking into upgrading terragrunt to 0.72.2. But am stuck with replacing config.EvalContextExtensions. Did you already look into this? |
This picks up a version of the terragrunt repository that has a AWS SDK that supports EKS Pod Identity.
While this is far from the latest terragrunt version, at least this provides some benefit while the much larger work required to upgrade to latest.