blockstream-satellite-api/terraform/data.tf
Blockstream Satellite 74e12c5903 tf: Drop the auth, gossip and btc-src servers
With the multichannel support, the handling of auth, gossip, and btc-src
messages has been migrated to the single shared production Satellite API
server. There are separate logical channels now for these streams.
Hence, the previous dedicated servers used for them are no longer
required.
2023-02-15 11:48:56 -03:00

19 lines
362 B
HCL

data "terraform_remote_state" "blc-mainnet" {
backend = "gcs"
workspace = local.env
config = {
bucket = "terraform-bs-source"
prefix = "satellite-api"
}
}
data "terraform_remote_state" "blc-testnet" {
backend = "gcs"
workspace = "testnet-${local.env}"
config = {
bucket = "terraform-bs-source"
prefix = "satellite-api"
}
}