Merge pull request #30409 from tyron/fix-module-outputs-reference

Fix reference to child module in outputs docs
This commit is contained in:
Craig Wright 2022-01-26 15:47:42 -08:00 committed by GitHub
commit ca02b55fba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ module "foo" {
}
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" {