diff --git a/knowledge base/pulumi.md b/knowledge base/pulumi.md
index d0f02d4..7666522 100644
--- a/knowledge base/pulumi.md
+++ b/knowledge base/pulumi.md
@@ -530,6 +530,10 @@ const resource = new.aws.s3.Bucket("bucket", {
});
```
+Property names passed to `ignoreChanges` shall always be the _camelCase_ version of those property names.
+E.g., specify the `CreatedBy` tag as `tags['createdBy']` to ignore it.
+See also [Property Paths].
+
### Delete before replacing
Add the [`deleteBeforeReplace` option][deletebeforereplace] to the resource.
@@ -1292,6 +1296,7 @@ Solution: follow the suggestion in the warning message:
- [`pulumi new`][pulumi new]
- [`pulumi config set-all`][pulumi config set-all]
- [Importing resources]
+- [Property paths]