Create RDS using AWS SDK

0

I want to create an RDS PostgreSQL database instance using the AWS SDK for JavaScript v3 and the free tier template. Can you provide me with some code samples? I get this error : InvalidParameterCombination: The combination of engine version 15.3 and DB instance class db.t3.medium isn't supported for Multi-AZ DB clusters I want to use Single-AZ db.t2.micro Instance.

andrew
asked 8 months ago242 views
1 Answer
0

That error message tells you that the Postgres version isn't supported on the instance type. This page gives you the story. You need to select postgres version that works on your desired instance type: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#Concepts.DBInstanceClass.Support

answered 8 months ago
profile pictureAWS
EXPERT
reviewed 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions