0
0

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 1 year has passed since last update.

【AWS】セキュリティポリシーについて

Posted at

セキュリティポリシーの設定について

S3バケットポリシーとIAMポリシーがあるが、ぶっちゃけどっちからでも制御できるのは?という疑問。結論から言うと、クロスアカウントアクセスである場合は両方のポリシーを突破してあげる必要がある。

クロスアカウント??

AWSアカウントは今や1つだけのアカウントだけで運用するものではなく、目的別に(dev/prod用など)運用するものになっている。

image.png
画像引用:IAMでクロスアカウントスイッチロールを設定してみた

IAMポリシー

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "s3:GetObject"
            ],
            "Resource": "arn:aws:s3:::[ターゲットバケット名]/*"
        }
    ]
}

引用:S3バケットポリシーとIAMポリシーの関係を整理する

S3バケットポリシー

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::[アカウントid]:role/[EC2にアタッチしたRole名]"
            },
            "Action": [
                "s3:GetObject"
            ],
            "Resource": [
                "arn:aws:s3:::[バケット名]/*"
            ]
        }
    ]
}

引用:S3バケットポリシーとIAMポリシーの関係を整理する

参考

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?