user3185039
user3185039

Reputation:

Unable to delete S3 bucket

I created a s3 bucket using console, while configuration I removed the default selected user. Now when I am trying to delete the bucket using console it says access denied. I understand I should have removed the user. However when I click on bucket name in permission it show owner: myUserName and bucket policy: no How can I delete it? As I understand there is owner but there is no permission to owner as I removed it while configuration.

Upvotes: 35

Views: 25655

Answers (6)

Jason Huang
Jason Huang

Reputation: 319

I successfully deleted my bucket by changing the "Action": "Deny" to "Action": "Allow" under permission tag

Upvotes: 1

atazmin
atazmin

Reputation: 5707

I could not delete S3 resource that was created by Elastic Beanstalk

  1. Bucket policy
  2. Deleting S3 again and it worked

Upvotes: 1

Imran Ahmad
Imran Ahmad

Reputation: 2927

You can try this in 2 ways:

First(Recommended): Delete the bucket policy and delete the bucket.

Second: Follow these steps

  1. Create a new Bucket(Do not change anything, keep default).
  2. Go to S3 console where all buckets are listed.
  3. Select newly created bucket.
  4. Click on permissions.
  5. Copy the account id under owner access section.
  6. Go to permissions of old bucket.
  7. Add account using the copied account id.
  8. Now try deleting it.

Upvotes: 15

sidhantunnithan
sidhantunnithan

Reputation: 1138

You are not able to delete it because there is a deny effect on "s3:DeleteBucket" on all principals according to this thread

You can simply follow these steps -

  1. Login as root user. (Not as any IAM user you might have specified)
  2. Go to the S3 console.
  3. Click on the bucket you want to delete.
  4. Under the "Permissions" tab click on "Bucket Policy"
  5. Click on "Delete"

Now you will be able to delete the bucket.

Incidentally, before you click on delete if you take a close look at the last element of the "Statement" array, you'll see what was causing the problem.

Upvotes: 103

smcracraft
smcracraft

Reputation: 493

Better to delete that particular element of the statement array than to point blank delete everything.

Upvotes: 1

Aseem
Aseem

Reputation: 6787

Delete bucket policy and you will be able to delete the bucket

Upvotes: 19

Related Questions