Step 1 - Create a custom policy

Suggest edits

The process of integrating AWS resources into your Estate starts from the EDB Postgres AI Console.

  1. Go to EDB Postgres AI Console.

  2. Scroll down to the Cloud Hosted Databases section, select the Manage Access button, and choose your project.

  3. The Cloud Hosted Databases UI shows Step 1 - Create custom policy.

  4. Go to the console of your AWS account with the RDS instances and S3 buckets you want to monitor.

  5. Navigate to IAM, and in the navigation pane on the left side of the AWS console, select Policies.

  6. On the Policies dashboard page, select the Create policy button.

  7. In the Policy editor section, choose the JSON option.

  8. Type or paste the following JSON policy document into the JSON editor:

    {
      "Version": "2012-10-17",
      "Statement": [
        {
          "Sid": "VisualEditor0",
          "Effect": "Allow",
          "Action": [
            "rds:DescribeDBInstances",
            "s3:ListAllMyBuckets",
            "rds:DescribeDBClusters"
          ],
          "Resource": "*"
        }
      ]
    }
  9. Select Next, give the policy a name, for example, edb-postgres-ai-addon-policy and select Create Policy. This policy allows EDB Postgres AI server to query metadata of your AWS RDS and S3 services.

  10. Next, in the Cloud Hosted Databases UI, select the Next: Create a Role button. The Cloud Hosted Databases UI should now show Step 2 - Create a Role.


Could this page be better? Report a problem or suggest an addition!