What’s the general recommendation for changing ver...
# aws
b
What’s the general recommendation for changing versions of a component when AWS doesn’t support it? For example, I created an Aurora Postgres RDS at version 12.4, but I realize I actually want it at 10.14. Pulumi sees this as just a version update (it does not see it as a replace), but then it ends up with this error from AWS:
Copy code
* Failed to modify RDS Cluster (aurora-postgres-ssa-tenants): InvalidParameterCombination: Cannot upgrade aurora-postgresql from 12.4 to 10.14
Should I just manually delete the RDS and then do a refresh? Something else?
l
You could change the name of the resource. That will cause Pulumi to delete/create.
b
I ended up doing
destroy --target …
of just that URN
👍 1