blockstream-satellite-api/terraform/modules/lb/outputs.tf
2020-10-28 08:51:17 -07:00

7 lines
283 B
HCL

output "lb_svc_acct" {
value = length(google_service_account.satapi-lb) > 0 ? google_service_account.satapi-lb[0].email : ""
}
output "backend_service" {
value = length(google_compute_backend_service.satapi-lb) > 0 ? google_compute_backend_service.satapi-lb[0].self_link : ""
}