I had a general question I was reading up on <http...
# general
b
I had a general question I was reading up on https://www.pulumi.com/docs/intro/concepts/resources/options/ignorechanges/ and I am curious about proper syntax to ignore an entire nested list
Copy code
var res = new MyResource("res",
    new MyResourceArgs { Prop = "new-value" },
    new CustomResourceOptions { IgnoreChanges = { "root.nested[*]" } });
^will this work to ignore everything under that nested block?