Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix: Remove default values for ept_rvi_mode and hv_mode #2172

Merged
merged 1 commit into from
Apr 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions vsphere/virtual_machine_config_structure.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,14 +127,12 @@ func schemaVirtualMachineConfigSpec() map[string]*schema.Schema {
"hv_mode": {
Type: schema.TypeString,
Optional: true,
Default: string(types.VirtualMachineFlagInfoVirtualExecUsageHvAuto),
Description: "The (non-nested) hardware virtualization setting for this virtual machine. Can be one of hvAuto, hvOn, or hvOff.",
ValidateFunc: validation.StringInSlice(virtualMachineVirtualExecUsageAllowedValues, false),
},
"ept_rvi_mode": {
Type: schema.TypeString,
Optional: true,
Default: string(types.VirtualMachineFlagInfoVirtualMmuUsageAutomatic),
Description: "The EPT/RVI (hardware memory virtualization) setting for this virtual machine. Can be one of automatic, on, or off.",
ValidateFunc: validation.StringInSlice(virtualMachineVirtualMmuUsageAllowedValues, false),
},
Expand Down
Loading