Skip to content
This repository has been archived by the owner on Sep 21, 2020. It is now read-only.

Commit

Permalink
Merge pull request #180 from stepanstipl/hack-stop-dataloader-errors
Browse files Browse the repository at this point in the history
Hack to stop dataloader related errors
  • Loading branch information
stepanstipl authored Oct 16, 2018
2 parents 0ce6a02 + 60f3d42 commit c243c01
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions gcp/modules/gpii-dataloader/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,13 @@ data "template_file" "dataloader_values" {
template = "${file("values.yaml")}"

vars {
dataloader_repository = "${var.dataloader_repository}"
dataloader_checksum = "${var.dataloader_checksum}"
dataloader_repository = "${var.dataloader_repository}"

# This is an ugly hack to stop TF/Helm dataloader errors and should be removed
# in scope of https://github.com/gpii-ops/gpii-infra/pull/163
# dataloader_checksum = "${var.dataloader_checksum}"
dataloader_checksum = "sha256:3876e3526b8b59f94aa25c8b6d1a3166df115d402b51176ef8bd91c899430369"

couchdb_admin_username = "${var.secret_couchdb_admin_username}"
couchdb_admin_password = "${var.secret_couchdb_admin_password}"
}
Expand Down

0 comments on commit c243c01

Please sign in to comment.