Skip to content

Prerequisites for AWS S3

Before proceeding with the AWS S3 setup, ensure that the following prerequisites are met:

  1. IAM Role Creation:
    • Create a new IAM role or use an existing one in your AWS environment.
    • Grant the IAM role the necessary access permissions by attaching an appropriate access policy via the AWS Console.
  2. Trust Relationship Configuration:
    • Add the following Trust policy JSON configuration to the IAM role to establish a trust relationship with PrivaceraCloud:
      JSON
      {
          "Version": "2012-10-17",
          "Statement": [
              {
                  "Effect": "Allow",
                  "Principal": {
                      "AWS":"arn:aws:iam::<account_id>:role/<role_name>",
                      "Service": "ec2.amazonaws.com"
                  },
                  "Action": "sts:AssumeRole"
              }
          ]
      }
      

Comments