This message was deleted.
# aws
s
This message was deleted.
a
if I change the name (i.e: rds-component-test), Pulumi tries to delete old component and creates a new component with name rds-component-test.
I found the error. In
const instanceCluster = new aws.rds.Cluster('rds-component', Args.cluster, opts)
, the opts has the value
ignoreChanges:['availabilitZones', ' ']
, second value in the array ignoreChanges is empty. When I deleted it , program works correctly