From e4f2569e6386c07de8f60d82597ab0b989943e63 Mon Sep 17 00:00:00 2001 From: Julio Castillo Date: Mon, 20 Jan 2025 23:59:12 +0100 Subject: [PATCH] Update variable description --- modules/gcs/README.md | 2 +- modules/gcs/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gcs/README.md b/modules/gcs/README.md index caf209cee6..1ec2812640 100644 --- a/modules/gcs/README.md +++ b/modules/gcs/README.md @@ -327,7 +327,7 @@ module "bucket" { | [name](variables.tf#L221) | Bucket name suffix. | string | ✓ | | | [project_id](variables.tf#L279) | Bucket project id. | string | ✓ | | | [autoclass](variables.tf#L17) | Enable autoclass to automatically transition objects to appropriate storage classes based on their access pattern. If set to true, storage_class must be set to STANDARD. Defaults to false. | bool | | null | -| [bucket_create](variables.tf#L23) | Create bucket. When set to false, uses a data source to reference existing project. | bool | | true | +| [bucket_create](variables.tf#L23) | Create bucket. | bool | | true | | [cors](variables.tf#L29) | CORS configuration for the bucket. Defaults to null. | object({…}) | | null | | [custom_placement_config](variables.tf#L40) | The bucket's custom location configuration, which specifies the individual regions that comprise a dual-region bucket. If the bucket is designated as REGIONAL or MULTI_REGIONAL, the parameters are empty. | list(string) | | null | | [default_event_based_hold](variables.tf#L46) | Enable event based hold to new objects added to specific bucket, defaults to false. | bool | | null | diff --git a/modules/gcs/variables.tf b/modules/gcs/variables.tf index dd3cebe80f..da26b163ad 100644 --- a/modules/gcs/variables.tf +++ b/modules/gcs/variables.tf @@ -21,7 +21,7 @@ variable "autoclass" { } variable "bucket_create" { - description = "Create bucket. When set to false, uses a data source to reference existing project." + description = "Create bucket." type = bool default = true }