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

Commit

Permalink
Add credhub database
Browse files Browse the repository at this point in the history
[#152551131]

Signed-off-by: Rowan Jacobs <[email protected]>
  • Loading branch information
Genevieve LEsperance authored and rowanjacobs committed Nov 3, 2017
1 parent 122602e commit ac89308
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions external_database/pas_database.tf
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,11 @@ resource "google_sql_database" "locket" {

count = "${var.count}"
}

resource "google_sql_database" "credhub" {
name = "credhub"
instance = "${google_sql_database_instance.master.name}"
depends_on = ["google_sql_database.locket"]

count = "${var.count}"
}

0 comments on commit ac89308

Please sign in to comment.