Skip to content

Commit 6d86150

Browse files
authored
Lowercase GH Handle When Defining User Label For GCP (#5605)
1 parent 7460a77 commit 6d86150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

enos/modules/gcp_target/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ resource "google_compute_instance" "boundary_target" {
125125
"project" : "enos",
126126
"project_name" : "qti-enos-boundary",
127127
"environment" : var.environment,
128-
"enos_user" : replace(var.enos_user, "/[\\W]+/", ""),
128+
"enos_user" : replace(lower(var.enos_user), "/[\\W]+/", ""),
129129
"filter_label_1" : random_id.filter_label1.hex
130130
"filter_label_2" : random_id.filter_label2.hex
131131
})

0 commit comments

Comments
 (0)