From 25920b139525d4e2fefda2913b6e79eb5ea3172c Mon Sep 17 00:00:00 2001 From: Sergiusz Urbaniak Date: Wed, 4 Oct 2017 11:16:16 +0200 Subject: [PATCH] platforms/gcp: replace admin_password_hash with admin_password bcrypt support landed in #1771 but the change was not promoted to GCP. This fixes it. --- platforms/gcp/tectonic.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/gcp/tectonic.tf b/platforms/gcp/tectonic.tf index 811a416f13..cf1aea1697 100644 --- a/platforms/gcp/tectonic.tf +++ b/platforms/gcp/tectonic.tf @@ -125,8 +125,8 @@ module "tectonic" { license_path = "${var.tectonic_vanilla_k8s ? "/dev/null" : pathexpand(var.tectonic_license_path)}" pull_secret_path = "${var.tectonic_vanilla_k8s ? "/dev/null" : pathexpand(var.tectonic_pull_secret_path)}" - admin_email = "${var.tectonic_admin_email}" - admin_password_hash = "${var.tectonic_admin_password_hash}" + admin_email = "${var.tectonic_admin_email}" + admin_password = "${var.tectonic_admin_password}" update_channel = "${var.tectonic_update_channel}" update_app_id = "${var.tectonic_update_app_id}"