Skip to content

Commit

Permalink
Merge pull request #23 from GaloyMoney/add_auth_pg_outputs
Browse files Browse the repository at this point in the history
chore: add auth pg outputs
  • Loading branch information
krtk6160 authored Feb 22, 2022
2 parents 55dd4a5 + 9b6c3af commit b328afb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions modules/platform/gcp/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,16 @@ output "shared_pg_admin_password" {
value = local.deploy_shared_pg ? module.shared_pg.0.admin_password : ""
sensitive = true
}

output "auth_pg_host" {
value = local.deploy_auth_pg ? module.auth_pg.0.private_ip : ""
}

output "auth_pg_admin_username" {
value = local.deploy_auth_pg ? module.auth_pg.0.admin_username : ""
}

output "auth_pg_admin_password" {
value = local.deploy_auth_pg ? module.auth_pg.0.admin_password : ""
sensitive = true
}

0 comments on commit b328afb

Please sign in to comment.