Skip to content

Commit

Permalink
Update variable description
Browse files Browse the repository at this point in the history
  • Loading branch information
juliocc committed Jan 20, 2025
1 parent 8b41ddd commit e4f2569
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/gcs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ module "bucket" {
| [name](variables.tf#L221) | Bucket name suffix. | <code>string</code> || |
| [project_id](variables.tf#L279) | Bucket project id. | <code>string</code> || |
| [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. | <code>bool</code> | | <code>null</code> |
| [bucket_create](variables.tf#L23) | Create bucket. When set to false, uses a data source to reference existing project. | <code>bool</code> | | <code>true</code> |
| [bucket_create](variables.tf#L23) | Create bucket. | <code>bool</code> | | <code>true</code> |
| [cors](variables.tf#L29) | CORS configuration for the bucket. Defaults to null. | <code title="object&#40;&#123;&#10; origin &#61; optional&#40;list&#40;string&#41;&#41;&#10; method &#61; optional&#40;list&#40;string&#41;&#41;&#10; response_header &#61; optional&#40;list&#40;string&#41;&#41;&#10; max_age_seconds &#61; optional&#40;number&#41;&#10;&#125;&#41;">object&#40;&#123;&#8230;&#125;&#41;</code> | | <code>null</code> |
| [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. | <code>list&#40;string&#41;</code> | | <code>null</code> |
| [default_event_based_hold](variables.tf#L46) | Enable event based hold to new objects added to specific bucket, defaults to false. | <code>bool</code> | | <code>null</code> |
Expand Down
2 changes: 1 addition & 1 deletion modules/gcs/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit e4f2569

Please sign in to comment.