From ff1ba3e912464c989785fecebb77a834bda81d59 Mon Sep 17 00:00:00 2001 From: ian-flores Date: Mon, 2 Feb 2026 12:23:31 -0800 Subject: [PATCH] Fix RDS identifier_prefix perpetual diff Add ignore_changes for identifier_prefix on workload RDS instance. identifier_prefix is write-only in AWS - it's used during creation but AWS doesn't return it, so Pulumi always shows it as needing to be set. This matches the existing fix in aws_control_room_persistent.py. --- .../src/ptd/pulumi_resources/aws_workload_persistent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python-pulumi/src/ptd/pulumi_resources/aws_workload_persistent.py b/python-pulumi/src/ptd/pulumi_resources/aws_workload_persistent.py index df9f7d0..e9c06db 100644 --- a/python-pulumi/src/ptd/pulumi_resources/aws_workload_persistent.py +++ b/python-pulumi/src/ptd/pulumi_resources/aws_workload_persistent.py @@ -408,6 +408,7 @@ def _define_db(self): opts=pulumi.ResourceOptions( parent=self.vpc, protect=self.workload.cfg.protect_persistent_resources, + ignore_changes=["identifier_prefix"], ), )