Skip to content
This repository was archived by the owner on Nov 9, 2022. It is now read-only.

Commit f86eac0

Browse files
authored
fix: Fixed grant variable type (terraform-aws-modules#46)
1 parent 9a08f96 commit f86eac0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ module "s3_bucket" {
109109
| cors\_rule | List of maps containing rules for Cross-Origin Resource Sharing. | `list(any)` | `[]` | no |
110110
| create\_bucket | Controls if S3 bucket should be created | `bool` | `true` | no |
111111
| force\_destroy | (Optional, Default:false ) A boolean that indicates all objects should be deleted from the bucket so that the bucket can be destroyed without error. These objects are not recoverable. | `bool` | `false` | no |
112-
| grant | An ACL policy grant. Conflicts with `acl` | `list(any)` | `[]` | no |
112+
| grant | An ACL policy grant. Conflicts with `acl` | `any` | `[]` | no |
113113
| ignore\_public\_acls | Whether Amazon S3 should ignore public ACLs for this bucket. | `bool` | `false` | no |
114114
| lifecycle\_rule | List of maps containing configuration of object lifecycle management. | `any` | `[]` | no |
115115
| logging | Map containing access bucket logging configuration. | `map(string)` | `{}` | no |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ variable "logging" {
9696

9797
variable "grant" {
9898
description = "An ACL policy grant. Conflicts with `acl`"
99-
type = list(any)
99+
type = any
100100
default = []
101101
}
102102

0 commit comments

Comments
 (0)