added output section for modulecalls

Signed-off-by: Heiko Neblung <Heiko.Neblung@t-systems.com>
This commit is contained in:
Heiko Neblung
2021-02-05 14:56:14 +01:00
parent 6a87908c27
commit 2575a40e78
249 changed files with 5775 additions and 83 deletions

View File

@@ -6,6 +6,7 @@ sections:
- header
- inputs
- providers
- modules
sort:
enabled: true
by:

View File

@@ -57,3 +57,18 @@ data "aws_caller_identity" "ident" {
}
resource "null_resource" "foo" {}
module "foo" {
source = "bar"
version = "1.2.3"
}
module "bar" {
source = "baz"
version = "4.5.6"
}
module "baz" {
source = "baz"
version = "4.5.6"
}