diff --git a/modules/platform/gcp/outputs.tf b/modules/platform/gcp/outputs.tf index d4d456b2..e0161f36 100644 --- a/modules/platform/gcp/outputs.tf +++ b/modules/platform/gcp/outputs.tf @@ -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 +}