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
6 lines
90 B
HCL
6 lines
90 B
HCL
resource "aws_instance" "mod" { }
|
|
|
|
output "output" {
|
|
value = "${aws_instance.mod.id}"
|
|
}
|