mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Allows target dependencies to be properly calculated across module boundaries, fixing scenarios where a target depends on something inside a module, but the contents of the module are not included in the targeted resources. fixes #1858
8 lines
112 B
HCL
8 lines
112 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
foo = "${module.child.output}"
|
|
}
|