Hey Pulumi friends, we are trying to use `ignore_c...
# general
g
Hey Pulumi friends, we are trying to use
ignore_changes
feature to ignore mutable tags like from kubernetes, but we still want to track certain tags like Name, Owner etc. Following docs and examples, using this in our code, ignores all tags changes
Copy code
ResourceOptions(ignore_changes=["tags"])
is there any example or mechanism to ignore a regex or conditional subset of tags? like ignore only if a tag starts with kubernetes?
I did see the transformations for adding the ignore_changes to certain components - https://www.pulumi.com/docs/concepts/options/transformations/ But this doesn't solve a conditional ignore of subset of tags either.