blockstream-satellite-api/terraform/data.tf

23 lines
360 B
Terraform
Raw Normal View History

2019-03-07 12:29:43 -08:00
data "terraform_remote_state" "blc-mainnet" {
2019-01-18 14:57:15 -08:00
backend = "gcs"
2019-05-31 07:23:30 -07:00
config = {
bucket = "tf-state-satellite-api"
prefix = "terraform/state"
2019-01-18 14:57:15 -08:00
}
workspace = "prod"
}
2019-03-07 12:29:43 -08:00
data "terraform_remote_state" "blc-testnet" {
backend = "gcs"
2019-05-31 07:23:30 -07:00
config = {
bucket = "tf-state-satellite-api"
prefix = "terraform/state"
2019-03-07 12:29:43 -08:00
}
workspace = "testnet-prod"
}
2019-05-31 07:23:30 -07:00