Skip to content

Commit

Permalink
[installer-tests] Fix GCP database config
Browse files Browse the repository at this point in the history
  • Loading branch information
nandajavarma committed Aug 26, 2022
1 parent 605bd5c commit bd2bb6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/infra/modules/gke/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ resource "google_sql_database" "database" {

resource "google_sql_user" "users" {
count = var.enable_external_database ? 1 : 0
name = "dbuser-${var.cluster_name}-${count.index}"
name = "gitpod"
instance = google_sql_database_instance.gitpod[count.index].name
password = random_password.password[count.index].result
}
Expand Down

0 comments on commit bd2bb6d

Please sign in to comment.