AuroraServerlessv1DBクラスターにパブリックIPアドレスを割り当てることはできません。
VPC内からのみ、AuroraServerlessv1DBクラスターへのアクセスが可能です。
-- Auroraクラスタの一覧
aws rds describe-db-clusters
- Aurora MySQL
-- Aurora Serverlessクラスタの作成
aws rds create-db-cluster \
--db-cluster-identifier cluster01 \
--engine aurora-mysql \
--engine-version 5.7.mysql_aurora.2.07.1 \
--engine-mode serverless \
--scaling-configuration MinCapacity=1,MaxCapacity=2,SecondsUntilAutoPause=300,AutoPause=true \
--master-username root \
--master-user-password 'root'
-- Auroraクラスタの削除
aws rds delete-db-cluster --db-cluster-identifier cluster01 \
--skip-final-snapshot
- Aurora PostgreSQL
-- Aurora Serverlessクラスタの作成
aws rds create-db-cluster \
--db-cluster-identifier cluster02 \
--engine aurora-postgresql --engine-version 10.14 \
--engine-mode serverless \
--scaling-configuration MinCapacity=2,MaxCapacity=4,SecondsUntilAutoPause=300,AutoPause=true \
--master-username postgres \
--master-user-password 'postgres'
-- Auroraクラスタの削除
aws rds delete-db-cluster --db-cluster-identifier cluster02 \
--skip-final-snapshot