View a markdown version of this page

Aurora serverless scaling execution block sample policy - Amazon Application Recovery Controller (ARC)

Aurora serverless scaling execution block sample policy

The following is a sample policy to attach if you add execution blocks to a Region switch plan for Aurora Serverless cluster scaling.

{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "rds:DescribeDBInstances", "rds:DescribeDBClusters", "rds:DescribeGlobalClusters", "rds:ModifyDBCluster", "rds:RebootDBInstance" ], "Resource": [ "arn:aws:rds:region:account-id:cluster:cluster-name", "arn:aws:rds:region:account-id:db:instance-name", "arn:aws:rds::account-id:global-cluster:global-cluster-name" ] }, { "Effect": "Allow", "Action": [ "cloudwatch:GetMetricData" ], "Resource": "*" }, { "Effect": "Allow", "Action": [ "ec2:DescribeInstanceTypes" ], "Resource": "*" } ] }