Fixed typo

This commit is contained in:
eliamaldini
2023-08-17 09:37:48 +02:00
parent 77d80a40c3
commit e927bf3858
3 changed files with 39 additions and 28 deletions

View File

@@ -48,9 +48,9 @@ variable "private_connections" {
description = "VMWare private connections configuration. It is used to create the gcloud command printed as output."
type = map(object({
name = string
description = optional(string, "Terraform-managed.")
network_self_link = string
peering = string
description = optional(string, "Terraform-managed.")
type = optional(string, "REGIONAL")
routing_mode = optional(string, "PRIVATE_SERVICE_ACCESS")
}))
@@ -76,12 +76,18 @@ variable "project_id" {
type = string
}
variable "vmwareengine_network_create" {
variable "vmw_network_create" {
description = "Create the VMware Engine network. When set to false, it uses a data source to reference an existing VMware Engine network."
type = bool
default = true
}
variable "vmw_network_description" {
description = " VMware Engine network description."
type = string
default = "Terraform-managed."
}
variable "zone" {
description = "Private cloud zone."
type = string