Noah Perks Sloan
Noah Perks Sloan
@jamengual updated the description to point to the test data. It's layout agnostic as it parses the module dependencies out of the projects.
@jamengual correct, it's only detecting changes to local modules.
Sorry for the churn, in testing this out, I've squashed some bugs and cleaned things up. I think the docs now lay out the use case. Since it's a departure...
Anything else I need to do to have this considered? A week of using it in our pipelines hasn't revealed any new issues.
@pauloconnor yup! `--autoplan-file-list=**/*.tf...,!modules/really-common-child-module/*` would keep changes to that module from being planned.
@jamengual rebased and tried to fix linter issues. LMK what can help move this forward.
As a long time follower of this one I’d just reiterate that many people are using kubexit to achieve what we need. In the context of Jobs, this mainly looks...
Also seeing this. We will see a window where sometimes a generated token gets Unauthorized for 3-5 minutes before it expires. The structure of the go-lang client auth plugins keeps...
I think I understand what is going on in our case. We are using the [token.Generator](https://github.com/kubernetes-sigs/aws-iam-authenticator/blob/master/pkg/token/token.go#L169) without passing in a Session, in a k8s Pod using IRSA. The IAM Role's...
One workaround is to expire the session early: ```go s, err := session.NewSessionWithOptions(session.Options{ SharedConfigState: session.SharedConfigEnable, CredentialsProviderOptions: &session.CredentialsProviderOptions{ WebIdentityRoleProviderOptions: func(provider *stscreds.WebIdentityRoleProvider) { // When the session expires, pre-signed tokens seem to...