mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 07:26:26 -06:00
5d50264c31
Adds the ability to target resources within modules, like: module.mymod.aws_instance.foo And the ability to target all resources inside a module, like: module.mymod Closes #1434
8 lines
93 B
HCL
8 lines
93 B
HCL
module "child" {
|
|
source = "./child"
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
foo = "bar"
|
|
}
|