Right now this command:
aws rds create-db-instance --engine postgresql ...
gives this error:
A client error (InvalidParameterValue) occurred: Invalid DB engine: postgresql
I figured it out. The amazon docs are wrong, use
aws rds create-db-instance --engine postgres ...
instead of
aws rds create-db-instance --engine postgresql ...
Fuck AWS!!
Most helpful comment
I figured it out. The amazon docs are wrong, use
aws rds create-db-instance --engine postgres ...
instead of
aws rds create-db-instance --engine postgresql ...