Merge pull request #30409 from tyron/fix-module-outputs-reference
Fix reference to child module in outputs docs
This commit is contained in:
commit
ca02b55fba
|
@ -115,7 +115,7 @@ module "foo" {
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "test_instance" "x" {
|
resource "test_instance" "x" {
|
||||||
some_attribute = module.mod.a # resource attribute references a sensitive output
|
some_attribute = module.foo.a # resource attribute references a sensitive output
|
||||||
}
|
}
|
||||||
|
|
||||||
output "out" {
|
output "out" {
|
||||||
|
|
Loading…
Reference in New Issue