mirror of
https://github.com/Blockstream/satellite-api.git
synced 2025-02-23 14:00:26 +01:00
28 lines
508 B
Terraform
28 lines
508 B
Terraform
|
data "terraform_remote_state" "lightning-store-prod" {
|
||
|
backend = "gcs"
|
||
|
|
||
|
config {
|
||
|
bucket = "tf-state-lightning-store"
|
||
|
prefix = "terraform/state"
|
||
|
project = "blockstream-store"
|
||
|
}
|
||
|
|
||
|
workspace = "production"
|
||
|
|
||
|
defaults {
|
||
|
prometheus_service_account = "${var.prom_service_acct}"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
data "terraform_remote_state" "blc-prod" {
|
||
|
backend = "gcs"
|
||
|
|
||
|
config {
|
||
|
bucket = "tf-state-ionosphere"
|
||
|
prefix = "terraform/state"
|
||
|
project = "blockstream-store"
|
||
|
}
|
||
|
|
||
|
workspace = "prod"
|
||
|
}
|