Merge pull request #9380 from hashicorp/azr-docs-remove-duplicate-guest-additions-mode-docfield

docs: virtualbox/iso: remove duplicate guest_additions_mode field ( it's already defined in `GuestAdditionsConfig` )
This commit is contained in:
Megan Marsh 2020-06-10 11:08:17 -07:00 committed by GitHub
commit 8aeaf28bf3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 16 deletions

View File

@ -46,14 +46,6 @@ type Config struct {
// The size, in megabytes, of the hard disk to create for the VM. By // The size, in megabytes, of the hard disk to create for the VM. By
// default, this is 40000 (about 40 GB). // default, this is 40000 (about 40 GB).
DiskSize uint `mapstructure:"disk_size" required:"false"` DiskSize uint `mapstructure:"disk_size" required:"false"`
// The method by which guest additions are made available to the guest for
// installation. Valid options are upload, attach, or disable. If the mode
// is attach the guest additions ISO will be attached as a CD device to the
// virtual machine. If the mode is upload the guest additions ISO will be
// uploaded to the path specified by guest_additions_path. The default
// value is upload. If disable is used, guest additions won't be
// downloaded, either.
GuestAdditionsMode string `mapstructure:"guest_additions_mode" required:"false"`
// The path on the guest virtual machine where the VirtualBox guest // The path on the guest virtual machine where the VirtualBox guest
// additions ISO will be uploaded. By default this is // additions ISO will be uploaded. By default this is
// VBoxGuestAdditions.iso which should upload into the login directory of // VBoxGuestAdditions.iso which should upload into the login directory of

View File

@ -3,14 +3,6 @@
- `disk_size` (uint) - The size, in megabytes, of the hard disk to create for the VM. By - `disk_size` (uint) - The size, in megabytes, of the hard disk to create for the VM. By
default, this is 40000 (about 40 GB). default, this is 40000 (about 40 GB).
- `guest_additions_mode` (string) - The method by which guest additions are made available to the guest for
installation. Valid options are upload, attach, or disable. If the mode
is attach the guest additions ISO will be attached as a CD device to the
virtual machine. If the mode is upload the guest additions ISO will be
uploaded to the path specified by guest_additions_path. The default
value is upload. If disable is used, guest additions won't be
downloaded, either.
- `guest_additions_path` (string) - The path on the guest virtual machine where the VirtualBox guest - `guest_additions_path` (string) - The path on the guest virtual machine where the VirtualBox guest
additions ISO will be uploaded. By default this is additions ISO will be uploaded. By default this is
VBoxGuestAdditions.iso which should upload into the login directory of VBoxGuestAdditions.iso which should upload into the login directory of