cloud-foundation-fabric/blueprints/cloud-operations/vm-migration/esxi/variables.tf

67 lines
1.8 KiB
HCL

# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
variable "m4ce_appliance_properties" {
description = "M4CE connector OVA image configuration parameters."
type = object({
hostname = string
ip0 = string
netmask0 = string
gateway = string
DNS = string
proxy = string
route0 = string
})
default = {
"hostname" = "gcp-m4ce-connector"
"ip0" = "0.0.0.0"
"netmask0" = "0.0.0.0"
"gateway" = "0.0.0.0"
"DNS" = ""
"proxy" = ""
"route0" = ""
}
}
variable "m4ce_connector_ovf_url" {
description = "http URL to the public M4CE connector OVA image."
type = string
default = "https://storage.googleapis.com/vmmigration-public-artifacts/migrate-connector-2-0-1663.ova"
}
variable "m4ce_ssh_public_key" {
description = "Filesystem path to the public key for the SSH login."
type = string
}
variable "vcenter_password" {
description = "VCenter user password."
type = string
}
variable "vsphere_environment" {
description = "VMVware VSphere connection parameters."
type = object({
vcenter_ip = string
vcenter_user = string
data_center = string
resource_pool = string
host_ip = string
datastore = string
virtual_net = string
})
}