0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

スイッチロールの要点だけざっくり

Posted at

スイッチロールとは

AWS環境で権限を切り替えたいときに使う。
検証用→本番用、AWSアカウントA→AWSアカウントB など。
手順は他のサイトにたくさんあるので、本投稿では要点だけを書きます。

ざっくり図

image.png

切り替え操作

AWSマネジメントコンソールにログイン後、右上のほうにロールの切り替えボタンがある。
スイッチ先のAWSアカウントID、スイッチ先のIAMロール名を指定してロールを切り替える。
image.png

stsを許可するjson

スイッチ元のIAMユーザがスイッチロールするための許可を与える。

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "VisualEditor0",
            "Effect": "Allow",
            "Action": "sts:AssumeRole",
            "Resource": "*"
        }
    ]
}

信頼ポリシーはユーザ単位またはロール単位で指定可能

Principalに書くパターン

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "{スイッチ元IAMユーザまたはロールARN}"
            },
            "Action": "sts:AssumeRole",
            "Condition": {}
        }
    ]
}

Conditionに書くパターン

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::{AWSアカウント}:root"
            },
            "Action": "sts:AssumeRole",
            "Condition": {
                "ArnLike": {
                    "aws:PrincipalArn": [
                        "{スイッチ元IAMユーザまたはロールARN}"
                    ]
                }
            }
        }
    ]
}

(おまけ)グループ単位はNG

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Principal": {
                "AWS": "arn:aws:iam::{AWSアカウント}:root"
            },
            "Action": "sts:AssumeRole",
            "Condition": {
                "ArnLike": {
                    "aws:PrincipalArn": [
                        "{スイッチ元ユーザにアタッチされているIAMグループのARN}"
                    ]
                }
            }
        }
    ]
}


image.png
IAMロール自体は作成できるものの、スイッチしようとするとエラーになる。

以上

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?