Unable to create Aurora (PostgreSQL Compatible) with Data API in Mumbai (ap-south-1) for Aurora PostgreSQL 13 (13.9)

0

Unable to create Aurora (PostgreSQL Compatible) with Data API in Mumbai for Aurora PostgreSQL 13 (13.9),

Per this document it is Available - https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Concepts.Aurora_Fea_Regions_DB-eng.Feature.Data_API.html#Concepts.Aurora_Fea_Regions_DB-eng.Feature.Data_API.apg-sv1

asked 3 months ago136 views
1 Answer
1
Accepted Answer

Hello.

I also confirmed that Aurora Serverless v1 is no longer selectable from my management console.
So, why not try starting it from the AWS CLI?
https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.create.html

aws rds create-db-cluster --db-cluster-identifier sample-cluster \
    --engine aurora-postgresql --engine-version 13.9 \
    --engine-mode serverless \
    --scaling-configuration MinCapacity=8,MaxCapacity=64,SecondsUntilAutoPause=1000,AutoPause=true \
     --master-username username --master-user-password Dtabase-Password

Although it is probably not supported in the Mumbai region yet, Aurora Serverless v2 now supports DataAPI, so I think it would be a good idea to use Aurora Serverless v2 in the future.
https://aws.amazon.com/about-aws/whats-new/2023/12/amazon-aurora-postgresql-rds-data-api/?nc1=h_ls

profile picture
EXPERT
answered 3 months ago
profile pictureAWS
EXPERT
reviewed 3 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