From b4a5347feb4120a6872c4aade8e50585aeb86e7c Mon Sep 17 00:00:00 2001 From: Afaan Ashiq <47219506+A-Ashiq@users.noreply.github.com> Date: Tue, 16 Apr 2024 12:24:44 +0100 Subject: [PATCH] fix: Typo in description of `access_log_delivery_policy_source_buckets` variable (#278) * Fix typo in description of `access_log_delivery_policy_source_buckets` variable * Fix typo in `README.md` for description of `access_log_delivery_policy_source_buckets` variable --- README.md | 2 +- variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 67f19bf..54a0a41 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ No modules. |------|-------------|------|---------|:--------:| | [acceleration\_status](#input\_acceleration\_status) | (Optional) Sets the accelerate configuration of an existing bucket. Can be Enabled or Suspended. | `string` | `null` | no | | [access\_log\_delivery\_policy\_source\_accounts](#input\_access\_log\_delivery\_policy\_source\_accounts) | (Optional) List of AWS Account IDs should be allowed to deliver access logs to this bucket. | `list(string)` | `[]` | no | -| [access\_log\_delivery\_policy\_source\_buckets](#input\_access\_log\_delivery\_policy\_source\_buckets) | (Optional) List of S3 bucket ARNs wich should be allowed to deliver access logs to this bucket. | `list(string)` | `[]` | no | +| [access\_log\_delivery\_policy\_source\_buckets](#input\_access\_log\_delivery\_policy\_source\_buckets) | (Optional) List of S3 bucket ARNs which should be allowed to deliver access logs to this bucket. | `list(string)` | `[]` | no | | [acl](#input\_acl) | (Optional) The canned ACL to apply. Conflicts with `grant` | `string` | `null` | no | | [allowed\_kms\_key\_arn](#input\_allowed\_kms\_key\_arn) | The ARN of KMS key which should be allowed in PutObject | `string` | `null` | no | | [analytics\_configuration](#input\_analytics\_configuration) | Map containing bucket analytics configuration. | `any` | `{}` | no | diff --git a/variables.tf b/variables.tf index 9be1450..95e0cb4 100644 --- a/variables.tf +++ b/variables.tf @@ -155,7 +155,7 @@ variable "logging" { } variable "access_log_delivery_policy_source_buckets" { - description = "(Optional) List of S3 bucket ARNs wich should be allowed to deliver access logs to this bucket." + description = "(Optional) List of S3 bucket ARNs which should be allowed to deliver access logs to this bucket." type = list(string) default = [] }