fix(pulumi): review property paths for the ignorechanges property

This commit is contained in:
Michele Cereda
2025-05-08 23:23:17 +02:00
parent 0d955dd854
commit 081f89af29

View File

@@ -549,12 +549,14 @@ const resource = new.aws.s3.Bucket("bucket", {
}, {
ignoreChanges: [
"tags['last-deploy-at']"
"tags.CreatedBy"
"tagsAll"
]
});
```
Property names passed to `ignoreChanges` shall always be the _camelCase_ version of those property names.<br/>
E.g., specify the `CreatedBy` tag as `tags['createdBy']` to ignore it.<br/>
E.g., specify the `nested_resource` property as `nestedResource`.<br/>
See also [Property Paths].
### Delete before replacing