diff --git a/modules/gcve-private-cloud/README.md b/modules/gcve-private-cloud/README.md index 5d5bde31..901b3079 100644 --- a/modules/gcve-private-cloud/README.md +++ b/modules/gcve-private-cloud/README.md @@ -89,12 +89,12 @@ module "gcve-pc" { | name | description | sensitive | |---|---|:---:| | [hcx](outputs.tf#L17) | Details about a HCX Cloud Manager appliance. | | -| [id](outputs.tf#L22) | ID of the private cloud | | -| [management_cluster](outputs.tf#L27) | Details of the management cluster of the private cloud | | -| [network_config](outputs.tf#L32) | Details about the network configuration of the private cloud | | +| [id](outputs.tf#L22) | ID of the private cloud. | | +| [management_cluster](outputs.tf#L27) | Details of the management cluster of the private cloud. | | +| [network_config](outputs.tf#L32) | Details about the network configuration of the private cloud. | | | [nsx](outputs.tf#L37) | Details about a NSX Manager appliance. | | | [private-cloud](outputs.tf#L42) | The private cloud resource. | | | [private_connections_setup](outputs.tf#L47) | Cloud SDK commands for the private connections manual setup. | | -| [state](outputs.tf#L63) | Details about the state of the private clou. | | +| [state](outputs.tf#L63) | Details about the state of the private cloud. | | | [vcenter](outputs.tf#L68) | Details about a vCenter Server management appliance. | | diff --git a/modules/gcve-private-cloud/outputs.tf b/modules/gcve-private-cloud/outputs.tf index 0b7280ce..55578f6d 100644 --- a/modules/gcve-private-cloud/outputs.tf +++ b/modules/gcve-private-cloud/outputs.tf @@ -20,17 +20,17 @@ output "hcx" { } output "id" { - description = "ID of the private cloud" + description = "ID of the private cloud." value = google_vmwareengine_private_cloud.private-cloud.id } output "management_cluster" { - description = "Details of the management cluster of the private cloud" + description = "Details of the management cluster of the private cloud." value = google_vmwareengine_private_cloud.private-cloud.management_cluster } output "network_config" { - description = "Details about the network configuration of the private cloud" + description = "Details about the network configuration of the private cloud." value = google_vmwareengine_private_cloud.private-cloud.network_config } @@ -61,7 +61,7 @@ output "private_connections_setup" { } output "state" { - description = "Details about the state of the private clou." + description = "Details about the state of the private cloud." value = google_vmwareengine_private_cloud.private-cloud.state }