Fixed typo
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user