chore(e2e): Modify gcp label to meet format constraints (#5400)

GCP label constraints include the following:

The value can only contain lowercase letters, numeric characters, underscores and dashes. The value can be at most 63 characters long. International characters are allowed.
pull/5404/head
Michael Li 1 year ago committed by GitHub
parent 47538bddcc
commit 629d7a93ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -125,7 +125,7 @@ resource "google_compute_instance" "boundary_target" {
"project" : "enos",
"project_name" : "qti-enos-boundary",
"environment" : var.environment,
"enos_user" : var.enos_user,
"enos_user" : replace(var.enos_user, "/[\\W]+/", ""),
"filter_label_1" : random_id.filter_label1.hex
"filter_label_2" : random_id.filter_label2.hex
})
@ -157,4 +157,4 @@ output "filter_label1" {
output "filter_label2" {
value = "labels.filter_label_2=${random_id.filter_label2.hex}"
}
}

Loading…
Cancel
Save