mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-23 23:22:57 -06:00
b205ac2123
I wanted to make sure this case was handled, and it is! So here's an extra test for us.
9 lines
121 B
HCL
9 lines
121 B
HCL
module "source" {
|
|
source = "./source"
|
|
}
|
|
|
|
module "dest" {
|
|
source = "./dest"
|
|
destin = "${module.source.sourceout}"
|
|
}
|