From 081f89af29a02a943e2b48e2b897e0f615130b6a Mon Sep 17 00:00:00 2001 From: Michele Cereda Date: Thu, 8 May 2025 23:23:17 +0200 Subject: [PATCH] fix(pulumi): review property paths for the ignorechanges property --- knowledge base/pulumi.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/knowledge base/pulumi.md b/knowledge base/pulumi.md index 1e67942..dc8e370 100644 --- a/knowledge base/pulumi.md +++ b/knowledge base/pulumi.md @@ -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.
-E.g., specify the `CreatedBy` tag as `tags['createdBy']` to ignore it.
+E.g., specify the `nested_resource` property as `nestedResource`.
See also [Property Paths]. ### Delete before replacing