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 #363 from stepanstipl/individual-dns
Browse files Browse the repository at this point in the history
GPII-3841: Add missing provider definition
  • Loading branch information
stepanstipl committed Apr 17, 2019
2 parents 4e4347c + 0ad42d3 commit 91572a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions gcp/modules/gpii-flowmanager/main.tf
Expand Up @@ -27,6 +27,11 @@ variable "secret_couchdb_admin_username" {}

variable "secret_couchdb_admin_password" {}

provider "google" {
project = "${var.project_id}"
credentials = "${var.serviceaccount_key}"
}

data "template_file" "flowmanager_values" {
template = "${file("values.yaml")}"

Expand Down
5 changes: 5 additions & 0 deletions gcp/modules/gpii-preferences/main.tf
Expand Up @@ -27,6 +27,11 @@ variable "secret_couchdb_admin_username" {}

variable "secret_couchdb_admin_password" {}

provider "google" {
project = "${var.project_id}"
credentials = "${var.serviceaccount_key}"
}

data "template_file" "preferences_values" {
template = "${file("values.yaml")}"

Expand Down

0 comments on commit 91572a4

Please sign in to comment.