Files
opentf/terraform/testdata/graph-builder-apply-module-destroy/main.tf
2019-06-30 10:16:15 +02:00

14 lines
155 B
HCL

variable "input" {
default = "value"
}
module "A" {
source = "./A"
input = var.input
}
module "B" {
source = "./A"
input = module.A.output
}