Prerequisites for using Aurora PostgreSQL Limitless Database - Amazon Aurora
This documentation is a draft for private preview for regions in the AWS European Sovereign Cloud. Documentation content will continue to evolve. Published: January 10, 2026.

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:rds:*:*:shard-group:*", "arn:aws:rds:*:*:cluster:*" ] } ] }