Skip to content

Commit c7502b9

Browse files
Keep variable names consistent.
Co-Authored-By: Aaron Lane <[email protected]>
1 parent 8319f24 commit c7502b9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ resource "google_storage_bucket" "main" {
2626
location = "${var.region}"
2727
project = "${var.project_id}"
2828
storage_class = "REGIONAL"
29-
labels = "${var.source_archive_bucket_labels}"
29+
labels = "${var.bucket_labels}"
3030
}
3131

3232
resource "google_storage_bucket_object" "main" {

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ variable "timeout_s" {
8080
description = "The amount of time in seconds allotted for the execution of the function."
8181
}
8282

83-
variable "source_archive_bucket_labels" {
83+
variable "bucket_labels" {
8484
type = "map"
8585
default = {}
8686
description = "A set of key/value label pairs to assign to the function source archive bucket."
@@ -108,4 +108,4 @@ variable "event_trigger_failure_policy_retry" {
108108
type = "string"
109109
default = "false"
110110
description = "A toggle to determine if the function should be retried on failure."
111-
}
111+
}

0 commit comments

Comments
 (0)