blockstream-satellite-api/terraform/data.tf

20 lines
362 B
Terraform
Raw Normal View History

2019-03-07 12:29:43 -08:00
data "terraform_remote_state" "blc-mainnet" {
2019-06-13 09:01:23 -07:00
backend = "gcs"
workspace = local.env
2019-01-18 14:57:15 -08:00
2019-05-31 07:23:30 -07:00
config = {
2019-06-13 09:01:23 -07:00
bucket = "terraform-bs-source"
prefix = "satellite-api"
2019-01-18 14:57:15 -08:00
}
}
2019-03-07 12:29:43 -08:00
data "terraform_remote_state" "blc-testnet" {
2019-06-13 09:01:23 -07:00
backend = "gcs"
workspace = "testnet-${local.env}"
2019-03-07 12:29:43 -08:00
2019-05-31 07:23:30 -07:00
config = {
2019-06-13 09:01:23 -07:00
bucket = "terraform-bs-source"
prefix = "satellite-api"
2019-03-07 12:29:43 -08:00
}
}