Prerequisites for using Aurora PostgreSQL Limitless Database - Amazon Aurora
Services or capabilities described in AWS documentation might vary by Region. To see the differences applicable to the AWS European Sovereign Cloud Region, see the AWS European Sovereign Cloud User Guide.

Prerequisites for using Aurora PostgreSQL Limitless Database

To use Aurora PostgreSQL Limitless Database, you must first perform the following tasks.

Enabling DB shard group operations

Before you can create a DB shard group, you must enable DB shard group operations.

  • Add the following section to the IAM policy of the IAM role of the user that accesses Aurora PostgreSQL Limitless Database:

    JSON
    { "Version":"2012-10-17", "Statement": [ { "Sid": "AllowDBShardGroup", "Effect": "Allow", "Action": [ "rds:CreateDBShardGroup", "rds:DescribeDBShardGroups", "rds:DeleteDBShardGroup", "rds:ModifyDBShardGroup", "rds:RebootDBShardGroup" ], "Resource": [ "arn:aws-eusc:rds:*:*:shard-group:*", "arn:aws-eusc:rds:*:*:cluster:*" ] } ] }