From ba69226f1010e50b92cd768afd328285e98019b2 Mon Sep 17 00:00:00 2001 From: Kassian Houben Date: Tue, 25 Jan 2022 10:49:37 +1300 Subject: [PATCH 1/2] docs: update outputs --- README.md | 6 +++--- README.tfdoc.hcl | 23 ++++++++++++++++------- 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9d1f3c2..c977c3a 100644 --- a/README.md +++ b/README.md @@ -220,15 +220,15 @@ See [variables.tf] and [examples/] for details and use-cases. The following attributes are exported in the outputs of the module: -- **`group`** +- [**`group`**](#output-group): *(`object(group)`)* All attributes of the created 'google_cloud_identity_group' resource. -- **`membership`** +- [**`membership`**](#output-membership): *(`object(membership)`)* All attributes of the created 'google_cloud_identity_group_membership' resource. -- **`module_enabled`** +- [**`module_enabled`**](#output-module_enabled): *(`bool`)* Whether this module is enabled. diff --git a/README.tfdoc.hcl b/README.tfdoc.hcl index 505a6b8..f6557e8 100644 --- a/README.tfdoc.hcl +++ b/README.tfdoc.hcl @@ -287,19 +287,28 @@ section { title = "Module Outputs" content = <<-END The following attributes are exported in the outputs of the module: + END - - **`group`** - + output "group" { + type = object(group) + description = <<-END All attributes of the created 'google_cloud_identity_group' resource. + END + } - - **`membership`** - + output "membership" { + type = object(membership) + description = <<-END All attributes of the created 'google_cloud_identity_group_membership' resource. + END + } - - **`module_enabled`** - + output "module_enabled" { + type = bool + description = <<-END Whether this module is enabled. - END + END + } } section { From ea8bafa3b69d840d5051d25b55db58e996e7bbc8 Mon Sep 17 00:00:00 2001 From: Kassian Houben Date: Thu, 27 Jan 2022 11:33:44 +1300 Subject: [PATCH 2/2] docs: replace single quotes with back quotes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sören Martius --- README.tfdoc.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.tfdoc.hcl b/README.tfdoc.hcl index f6557e8..f7f2dc6 100644 --- a/README.tfdoc.hcl +++ b/README.tfdoc.hcl @@ -292,14 +292,14 @@ section { output "group" { type = object(group) description = <<-END - All attributes of the created 'google_cloud_identity_group' resource. + All attributes of the created `google_cloud_identity_group` resource. END } output "membership" { type = object(membership) description = <<-END - All attributes of the created 'google_cloud_identity_group_membership' resource. + All attributes of the created `google_cloud_identity_group_membership` resource. END }