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.

NotActionを用いて特定操作以外を拒否するIAMポリシーを作成する

Last updated at Posted at 2023-10-28

環境構築を行う際、開発担当者にAdministrator権限が必要なことがあります。
しかし、CloudTrail等、セキュリティ関連の設定を勝手に変更されては困ります。
そこで、NotActionを用いてCloudTrailの読み取り以外の操作をすべて拒否するIAMポリシーを作成し、アタッチすることにしました。

{
	"Version": "2012-10-17",
	"Statement": [
		{
			"Sid": "DenyCloudTrail",
			"Effect": "Deny",
			"NotAction": [ 
				"cloudtrail:List*",
				"cloudtrail:Get*",
				"cloudtrail:Describe*"
			],
			"Resource": "arn:aws:cloudtrail:*:*:*"
		}
	]
}

ポイントは、以下のようにResource部分を詳細に記述することです。

"Resource": "arn:aws:cloudtrail:*:*:*"

Resource部分を"*"にすると、CloudTrail以外の全サービスの権限が明示的に拒否されるため皆さんも注意してくださいね。

"Resource": "*"
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?