mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-03-15 12:19:47 +01:00
23 lines
419 B
HCL
23 lines
419 B
HCL
data "terraform_remote_state" "blc-mainnet" {
|
|
backend = "gcs"
|
|
|
|
config {
|
|
bucket = "tf-state-satellite-api"
|
|
prefix = "terraform/state"
|
|
project = "satellite-api"
|
|
}
|
|
|
|
workspace = "prod"
|
|
}
|
|
|
|
data "terraform_remote_state" "blc-testnet" {
|
|
backend = "gcs"
|
|
|
|
config {
|
|
bucket = "tf-state-satellite-api"
|
|
prefix = "terraform/state"
|
|
project = "satellite-api"
|
|
}
|
|
|
|
workspace = "testnet-prod"
|
|
}
|