Skip to content

Commit

Permalink
platforms/gcp: replace admin_password_hash with admin_password
Browse files Browse the repository at this point in the history
bcrypt support landed in coreos#1771 but the change was not promoted to GCP.
This fixes it.
  • Loading branch information
Sergiusz Urbaniak committed Oct 4, 2017
1 parent 9d54feb commit 25920b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platforms/gcp/tectonic.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
Expand Down

0 comments on commit 25920b1

Please sign in to comment.