LoginSignup
0
0

More than 5 years have passed since last update.

Elastic Beanstalkで作ったS3のバケットが削除出来なくなった時にやったこと

Last updated at Posted at 2016-06-19

i)画面の右にある「アクセス許可」の「バケットポリシーの追加」を押下する

スクリーンショット 2016-06-19 19.02.46.png

ii)EffectのDenyをAllowに変更する

{          
  "Sid": "????????????????????????????????",
  "Effect": "Deny", ← ここを"Allow"にする
  "Principal": {
    "AWS": "*"
  },
  "Action": "s3:DeleteBucket",
  "Resource": "arn:aws:s3:::<bucketname>"
}

iii)バケットを削除する

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