Skip to content

Commit c2d3fbc

Browse files
committed
Fix lifecycle_rules variable for s3-archive-bucket module
1 parent a9ba076 commit c2d3fbc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.1
1+
0.6.2

modules/s3-archive-bucket/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ No modules.
5757
| <a name="input_delivery_elb_key_prefixes"></a> [delivery\_elb\_key\_prefixes](#input\_delivery\_elb\_key\_prefixes) | List of the S3 key prefixes that follows the name of the bucket you have allowed for ELB(Elastic Load Balancer) log file delivery. | `list(string)` | `[]` | no |
5858
| <a name="input_force_destroy"></a> [force\_destroy](#input\_force\_destroy) | A bool that indicates all objects (including any locked objects) should be deleted from the bucket so the bucket can be destroyed without error. | `bool` | `false` | no |
5959
| <a name="input_grants"></a> [grants](#input\_grants) | A list of the ACL policy grant. Conflicts with acl. Valid values for `grant.type` are `CanonicalUser` and `Group`. `AmazonCustomerByEmail` is not supported. Valid values for `grant.permissions` are `READ`, `WRITE`, `READ_ACP`, `WRITE_ACP`, `FULL_CONTROL`. | `list(any)` | `[]` | no |
60-
| <a name="input_lifecycle_rules"></a> [lifecycle\_rules](#input\_lifecycle\_rules) | Use lifecycle rules to define actions you want Amazon S3 to take during an object's lifetime such as transitioning objects to another storage class, archiving them, or deleting them after a specified period of time. | `list(map(any))` | `[]` | no |
60+
| <a name="input_lifecycle_rules"></a> [lifecycle\_rules](#input\_lifecycle\_rules) | Use lifecycle rules to define actions you want Amazon S3 to take during an object's lifetime such as transitioning objects to another storage class, archiving them, or deleting them after a specified period of time. | `list(any)` | `[]` | no |
6161
| <a name="input_logging_s3_bucket"></a> [logging\_s3\_bucket](#input\_logging\_s3\_bucket) | The name of the bucket that will receive the log objects. | `string` | `null` | no |
6262
| <a name="input_logging_s3_key_prefix"></a> [logging\_s3\_key\_prefix](#input\_logging\_s3\_key\_prefix) | To specify a key prefix of log objects. | `string` | `null` | no |
6363
| <a name="input_mfa_delete_enabled"></a> [mfa\_delete\_enabled](#input\_mfa\_delete\_enabled) | Enable MFA delete for either `Change the versioning state of your bucket` or `Permanently delete an object version`. Default is `false`. | `bool` | `false` | no |

modules/s3-archive-bucket/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ variable "delivery_elb_key_prefixes" {
9595

9696
variable "lifecycle_rules" {
9797
description = "Use lifecycle rules to define actions you want Amazon S3 to take during an object's lifetime such as transitioning objects to another storage class, archiving them, or deleting them after a specified period of time."
98-
type = list(map(any))
98+
type = list(any)
9999
default = []
100100
}
101101

0 commit comments

Comments
 (0)