Skip to content
This repository was archived by the owner on Sep 21, 2020. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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