This message was deleted.
# aws
s
This message was deleted.
c
So, managed to get past those errors by using
ReplaceOnChanges
on those subnet groups.
Copy code
ReplaceOnChanges = new List<string> { "*" }
But now I'm hitting the next error,
You cannot move DB instance development-postgresql5cf0ed8 to subnet group development-postgresql-subnetgroup-d532d2f. The specified DB subnet group and DB instance are in the same VPC. Choose a DB subnet group in different VPC than the specified DB instance and try again.
So apparently you can only change the subnet group of an RDS instance if you are also moving it to a different VPC. That's a bit unfortunate. 😞
Worked around that by moving the instance to the default VPC from the AWS console. Then, the second time,
pulumi up
was successful. All is well 🥳