5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

クロスリージョンレプリケーション - S3

Posted at

レプリケート元とレプリケート先の両方のバケットで、バージョニングを有効にする。
image.png

レプリケーションでルールを作成します。
image.png

レプリケーションルール
1.ソースの設定:検証なので、すべてのコンテンツにしておく。
image.png

2.送信先の設定:送信先バケットを指定する。
image.png

3.オプションを設定:新しいロールの作成にしておく。
image.png

IAMロールの内容は↓な感じです。

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Action": [
                "s3:Get*",
                "s3:ListBucket"
            ],
            "Effect": "Allow",
            "Resource": [
                "arn:aws:s3:::mondopiece-mondopiece",
                "arn:aws:s3:::mondopiece-mondopiece/*"
            ]
        },
        {
            "Action": [
                "s3:ReplicateObject",
                "s3:ReplicateDelete",
                "s3:ReplicateTags",
                "s3:GetObjectVersionTagging"
            ],
            "Effect": "Allow",
            "Resource": "arn:aws:s3:::mondopiece2-mondopiece2/*"
        }
    ]
}

4.確認:保存をクリック。

Aリージョンにファイルをアップロードして動作を確認し、↓のようにBにも表示されるか確認してみましょう。
image.png

5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?