one.tf
variable "allow_unverified_ssl" {
default = "true"
description = "Communication with vsphere server with self signed certificate"
}
two.tf
# This variable is not properly formatted
variable "datacenter_1_name" {
type = "string"
}
Returns
variable "allow_unverified_ssl" {
default = "true"
}
# This variable is not properly formatted
variable "datacenter_1_name" {
description = "Communication with vsphere server with self signed certificate"
type = "string"
}
Returns