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

Commit

Permalink
GPII-3391 - Hack to stop dataloader related errors
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanstipl committed Oct 12, 2018
1 parent 2f67833 commit 60f3d42
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 60f3d42

Please sign in to comment.