I’ve just started getting an unhandled error from ...
# python
s
I’ve just started getting an unhandled error from Pulumi. Worked totally fine on 2 other stacks and then blew up on production 🤦‍♂️ Is this a known issue anywhere or should I make a bug report?
Found the issue. Turns out the database endpoint on AWS Aurora has no port (
host
) whereas the regular RDS endpoint does have (
host:port
). So doing a
split(":")
and pulling out the host and port will work on RDS but not on Aurora 🤷