mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-23 05:55:06 +01:00
21 lines
468 B
HCL
21 lines
468 B
HCL
# Internal IP used for proxy_pass-ing to correct instance (mainnet vs testnet)
|
|
output "blc_internal_ip_testnet" {
|
|
value = module.blc-testnet.internal_ip
|
|
}
|
|
|
|
# Remote service accounts used for firewall rules
|
|
output "prom_svc_acct" {
|
|
value = module.prometheus.prom_svc_acct
|
|
}
|
|
|
|
output "lb_svc_acct" {
|
|
value = module.lb.lb_svc_acct
|
|
}
|
|
|
|
output "lb_backend_service" {
|
|
value = module.lb.backend_service
|
|
}
|
|
|
|
output "lb_cert_bucket" {
|
|
value = module.lb.lb_cert_bucket
|
|
}
|