mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-02-20 19:00:38 -05:00
14 lines
155 B
HCL
14 lines
155 B
HCL
variable "input" {
|
|
default = "value"
|
|
}
|
|
|
|
module "A" {
|
|
source = "./A"
|
|
input = var.input
|
|
}
|
|
|
|
module "B" {
|
|
source = "./A"
|
|
input = module.A.output
|
|
}
|