You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module"vsphere_dpm_host_override" {
source="./modules/vsphere/r/vsphere_dpm_host_override"# compute_cluster_id - (required) is a type of stringcompute_cluster_id=null# dpm_automation_level - (optional) is a type of stringdpm_automation_level=null# dpm_enabled - (optional) is a type of booldpm_enabled=null# host_system_id - (required) is a type of stringhost_system_id=null
}
variable"compute_cluster_id" {
description="(required) - The managed object ID of the cluster."type=string
}
variable"dpm_automation_level" {
description="(optional) - The automation level for power operations on this host. Can be one of manual or automated."type=stringdefault=null
}
variable"dpm_enabled" {
description="(optional) - Enable DPM for this host."type=booldefault=null
}
variable"host_system_id" {
description="(required) - The managed object ID of the host."type=string
}
resource"vsphere_dpm_host_override""this" {
# compute_cluster_id - (required) is a type of stringcompute_cluster_id=var.compute_cluster_id# dpm_automation_level - (optional) is a type of stringdpm_automation_level=var.dpm_automation_level# dpm_enabled - (optional) is a type of booldpm_enabled=var.dpm_enabled# host_system_id - (required) is a type of stringhost_system_id=var.host_system_id
}