Live tracking data using AWS S3 to S3 replication

Print Friendly and PDF

Netradyne uses AWS Firehose stream to deliver data to Amazon S3 bucket. The data in Netradyne S3 bucket needs to replicate into your S3 bucket. After that you can consume data as you want (It is not necessary that to use AWS Firehose).

To configure the replication from Netradyne S3 bucket to Customer S3 bucket, the information is located at the following location - ND-S3 to Customer S3 bucket.

  • Destination  (Customer) AWS Account number
  • Destination Amazon S3bucket Name 
  • KMS custom master key ARN
  • Storage class - <Standard or Standard-IA>
  • Object ownership - <account-number>
  • S3 Replication Time Control - 99.99 percent of those objects within 15 minutes (Addition Charges)

Following IAM policy should be updated on the destination bucket.

{

    "Version": "2008-10-17",

    "Id": "S3-Console-Replication-Policy",

    "Statement": [

        {

            "Sid": "S3ReplicationPolicyStmt1",

            "Effect": "Allow",

            "Principal": {

                "AWS": "arn:aws:iam::<Netradyne_AWS_Account_Number>:root"

            },

            "Action": [

                "s3:GetBucketVersioning",

                "s3:PutBucketVersioning",

                "s3:ReplicateObject",

                "s3:ReplicateDelete"

            ],

            "Resource": [

                "arn:aws:s3:::<bucket-name> ",

                "arn:aws:s3::: <bucket-name>/*"

            ]

        }

    ]

}

 

 

 

Was this article helpful?

We're sorry to hear that!

Please tell us why.
0 out of 0 found this helpful