This message was deleted.
# aws
s
This message was deleted.
p
I tried both
ignoreChanges: ['*']
and the following transformations:
Copy code
transformations: [
        (args) => {
          if (args.type === 'aws:ec2/launchTemplate:LaunchTemplate') {
            return {
              props: args.props,
              opts: pulumi.mergeOptions(args.opts, {
                ignoreChanges: ['*'],
              }),
            }
          }
          return undefined
        },
      ],
b
I have seen a comment from @shy-arm-32391 on https://github.com/pulumi/pulumi-eks/issues/709 that ignore_changes is not supported for resources in
pulumi/eks
. I am not sure if there’s been an update on this. This has been a source of significant pain for us as well 😞
s
hi! I asked internally and there is a bit of related work happening currently. This is an issue that needs to be addressed in pulumi/pulumi itself, as it affects all component resources, not just pulumi-eks. I'd encourage you to file an issue there and link the related eks issues.