I’ve upgraded Pulumi from v2 to v3 using golang, a...
# aws
s
I’ve upgraded Pulumi from v2 to v3 using golang, and in this process, the type of
instanceTypes
for EKS NodeGroup objects has changed from a string to a string array, resulting in the following diff in preview:
Copy code
instanceTypes : "c5.xlarge" => ["c5.xlarge"]
This causes Pulumi to want to replace the NodeGroup. Is there any way to have Pulumi automatically update this state so it doesn’t recreate the NodeGroup? (
pulumi refresh
did not pick this up)
b
You can use ignoreChanges as a resource option: https://www.pulumi.com/docs/intro/concepts/resources/#options