From 574172d77d8e1d255cb286a44c50537130833d71 Mon Sep 17 00:00:00 2001 From: Quentin Klein Date: Sun, 15 Oct 2023 09:45:26 +0200 Subject: [PATCH] aws-s3-rb: add page (#10871) * aws-s3: add rb page * change tense of examples * Remove trailing whitespace * Update pages/common/aws-s3-rb.md Co-authored-by: K.B.Dharun Krishna --------- Co-authored-by: K.B.Dharun Krishna --- pages/common/aws-s3-rb.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pages/common/aws-s3-rb.md diff --git a/pages/common/aws-s3-rb.md b/pages/common/aws-s3-rb.md new file mode 100644 index 000000000..518258fc9 --- /dev/null +++ b/pages/common/aws-s3-rb.md @@ -0,0 +1,12 @@ +# aws s3 rb + +> Delete an empty S3 bucket. +> More information: . + +- Delete an empty S3 bucket: + +`aws s3 rb s3://{{bucket_name}}` + +- Force delete an S3 bucket and its non-versioned objects (will crash if versioned objects are present): + +`aws s3 rb s3://{{bucket_name}} --force`