fixed typo

This commit is contained in:
eliamaldini 2023-08-18 17:01:12 +02:00
parent 103443dc30
commit 126d75a311
2 changed files with 8 additions and 8 deletions

View File

@ -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. | |
<!-- END TFDOC -->

View File

@ -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
}