Files
example.terraform/remote-state/show-vpcid-from-another-state.tf
T
2020-08-07 10:12:46 +08:00

11 lines
201 B
Terraform

data "terraform_remote_state" "vpc" {
backend = "local"
config = {
path = "../vpc-subnets/terraform.tfstate"
}
}
output "vpc_id" {
value = data.terraform_remote_state.vpc.outputs.vpc_id
}