diff --git a/README.md b/README.md
index 2d43b637..4f8ea857 100644
--- a/README.md
+++ b/README.md
@@ -252,7 +252,6 @@ Available targets:
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
-| [abort\_incomplete\_multipart\_upload\_days](#input\_abort\_incomplete\_multipart\_upload\_days) | Maximum time (in days) that you want to allow multipart uploads to remain in progress | `number` | `5` | no |
| [acl](#input\_acl) | The [canned ACL](https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl) to apply. We recommend `private` to avoid exposing sensitive information. Conflicts with `grants`. | `string` | `"private"` | no |
| [additional\_tag\_map](#input\_additional\_tag\_map) | Additional key-value pairs to add to each map in `tags_as_list_of_maps`. Not added to `tags` or `id`.
This is for some rare cases where resources want additional configuration of tags
and therefore take a list of maps with tag key, value, and additional configuration. | `map(string)` | `{}` | no |
| [allow\_encrypted\_uploads\_only](#input\_allow\_encrypted\_uploads\_only) | Set to `true` to prevent uploads of unencrypted objects to S3 bucket | `bool` | `false` | no |
diff --git a/docs/terraform.md b/docs/terraform.md
index 007405df..0682c6f0 100644
--- a/docs/terraform.md
+++ b/docs/terraform.md
@@ -43,7 +43,6 @@
| Name | Description | Type | Default | Required |
|------|-------------|------|---------|:--------:|
-| [abort\_incomplete\_multipart\_upload\_days](#input\_abort\_incomplete\_multipart\_upload\_days) | Maximum time (in days) that you want to allow multipart uploads to remain in progress | `number` | `5` | no |
| [acl](#input\_acl) | The [canned ACL](https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl) to apply. We recommend `private` to avoid exposing sensitive information. Conflicts with `grants`. | `string` | `"private"` | no |
| [additional\_tag\_map](#input\_additional\_tag\_map) | Additional key-value pairs to add to each map in `tags_as_list_of_maps`. Not added to `tags` or `id`.
This is for some rare cases where resources want additional configuration of tags
and therefore take a list of maps with tag key, value, and additional configuration. | `map(string)` | `{}` | no |
| [allow\_encrypted\_uploads\_only](#input\_allow\_encrypted\_uploads\_only) | Set to `true` to prevent uploads of unencrypted objects to S3 bucket | `bool` | `false` | no |
diff --git a/examples/complete/variables.tf b/examples/complete/variables.tf
index 31ae2297..101c3bc0 100644
--- a/examples/complete/variables.tf
+++ b/examples/complete/variables.tf
@@ -189,12 +189,6 @@ variable "expiration_days" {
description = "Number of days after which to expunge the objects"
}
-variable "abort_incomplete_multipart_upload_days" {
- type = number
- default = 5
- description = "Maximum time (in days) that you want to allow multipart uploads to remain in progress"
-}
-
variable "lifecycle_tags" {
type = map(string)
description = "Tags filter. Used to manage object lifecycle events"
diff --git a/variables.tf b/variables.tf
index 9c6ffee4..e3ccb303 100644
--- a/variables.tf
+++ b/variables.tf
@@ -138,12 +138,6 @@ variable "cors_rule_inputs" {
description = "Specifies the allowed headers, methods, origins and exposed headers when using CORS on this bucket"
}
-variable "abort_incomplete_multipart_upload_days" {
- type = number
- default = 5
- description = "Maximum time (in days) that you want to allow multipart uploads to remain in progress"
-}
-
variable "block_public_acls" {
type = bool
default = true