This message was deleted.
# general
s
This message was deleted.
😄 1
b
Hi @best-waiter-16927 Unfortunately, as far as I can tell, changing a description of the subnet group isn’t actually supported by the aws cli or the sdk And this why Pulumi has this limitation https://docs.aws.amazon.com/cli/latest/reference/rds/modify-db-subnet-group.html Can you edit the description in the AWS console? If so then you can use Pulumi refresh to get that change
Also @best-waiter-16927 you can pass ignoreChanges to the CustomResourceOptions to say ignore changes to description Eg (writing on my phone) Const myGroup = new aws.rds.SubnetGroup(ā€œmy-groupā€,{},{ ignoreChanges: [ā€œdescriptionā€] })
And that will stop the ForceNew
b
@broad-dog-22463 Thanks for your quick reply! Indeed the ignoreChanges worked as expected šŸ’Ŗ Thank you! I would recommend adding a warning in pulumi-aws CHANGELOG on version 1.8.0 since there is a forced change to the default description which can cause this issue: https://github.com/pulumi/pulumi-aws/blob/master/CHANGELOG.md#180-2019-11-07
b
I’m glad that worked - I’ll add an entry to the changelog to use ignoreChanges - sorry that caught you :/
šŸ™ 1
Feel free to let me know if there are any other issues
s
Maybe we should back out the description change there
b
@stocky-spoon-28903 it was like 5 releases ago - maybe more :(
11 releases ago actually