mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-03-13 03:09:53 +01:00
22 lines
360 B
HCL
22 lines
360 B
HCL
data "terraform_remote_state" "blc-mainnet" {
|
|
backend = "gcs"
|
|
|
|
config = {
|
|
bucket = "tf-state-satellite-api"
|
|
prefix = "terraform/state"
|
|
}
|
|
|
|
workspace = "prod"
|
|
}
|
|
|
|
data "terraform_remote_state" "blc-testnet" {
|
|
backend = "gcs"
|
|
|
|
config = {
|
|
bucket = "tf-state-satellite-api"
|
|
prefix = "terraform/state"
|
|
}
|
|
|
|
workspace = "testnet-prod"
|
|
}
|
|
|