blockstream-satellite-api/terraform/data.tf

12 lines
202 B
Terraform
Raw Normal View History

2019-01-18 14:57:15 -08:00
data "terraform_remote_state" "blc-prod" {
backend = "gcs"
config {
2019-01-29 11:28:40 -08:00
bucket = "tf-state-satellite-api"
2019-01-18 14:57:15 -08:00
prefix = "terraform/state"
2019-01-29 11:28:40 -08:00
project = "satellite-api"
2019-01-18 14:57:15 -08:00
}
workspace = "prod"
}