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
Copy file name to clipboardExpand all lines: .web-docs/components/builder/vsphere-clone/README.md
+8-9Lines changed: 8 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -291,7 +291,7 @@ JSON Example:
291
291
292
292
<!-- Code generated from the comments of the ConfigParamsConfig struct in builder/vsphere/common/step_config_params.go; DO NOT EDIT MANUALLY -->
293
293
294
-
-`configuration_parameters` (map[string]string) - A map of key-value pairs to sent to the [`extraConfig`](https://dp-downloads.broadcom.com/api-content/apis/API_VWSA_001/8.0U3/html/ReferenceGuides/vim.vm.ConfigSpec.html#extraConfig).
294
+
-`configuration_parameters` (map[string]string) - A map of key-value pairs to send to the [`extraConfig`](https://dp-downloads.broadcom.com/api-content/apis/API_VWSA_001/8.0U3/html/ReferenceGuides/vim.vm.ConfigSpec.html#extraConfig).
295
295
in the vSphere API's `VirtualMachineConfigSpec`.
296
296
297
297
HCL Example:
@@ -315,7 +315,7 @@ JSON Example:
315
315
```
316
316
317
317
~> **Note:** Configuration keys that would conflict with parameters that
318
-
are explicitly configurable through other fields in the `ConfigSpec`` object
318
+
are explicitly configurable through other fields in the `ConfigSpec` object
319
319
are silently ignored. Refer to the [`VirtualMachineConfigSpec`](https://dp-downloads.broadcom.com/api-content/apis/API_VWSA_001/8.0U3/html/ReferenceGuides/vim.vm.ConfigSpec.html)
-`convert_to_template` (bool) - Convert the virtual machine to a template after the build is complete.
184
183
Defaults to `false`.
185
-
If set to `true`, the virtual machine can not be imported into a content library.
184
+
If set to `true`, the virtual machine cannot be imported into a content library.
186
185
187
186
-`export` (\*common.ExportConfig) - The configuration for exporting the virtual machine to an OVF.
188
187
The virtual machine is not exported if [export configuration](#export-configuration) is not specified.
@@ -652,10 +651,10 @@ boot time.
652
651
-`floppy_dirs` ([]string) - A list of directories to copy files from.
653
652
654
653
-`floppy_content` (map[string]string) - Key/Values to add to the floppy disk. The keys represent the paths, and
655
-
the values contents. It can be used alongside `floppy_files` or
654
+
the value contents. It can be used alongside `floppy_files` or
656
655
`floppy_dirs`, which is useful to add large files without loading them
657
-
into memory. If any paths are specified by both, the contents in
658
-
`floppy_content` will take precedence.
656
+
into memory. If both specify a path, the contents in`floppy_content` will take
657
+
precedence.
659
658
660
659
HCL Example:
661
660
@@ -667,8 +666,8 @@ boot time.
667
666
```
668
667
669
668
-`floppy_label` (string) - The label to use for the floppy disk that is attached when the virtual
670
-
machine is booted. This is most useful for cloud-init, Kickstart or other
671
-
early initialization tools, which can benefit from labelled floppy disks.
669
+
machine is booted. This is most useful for cloud-init, Kickstart, or other
670
+
early initialization tools, which can benefit from labeled floppy disks.
672
671
By default, the floppy label will be 'packer'.
673
672
674
673
<!-- End of code generated from the comments of the FloppyConfig struct in builder/vsphere/common/step_add_floppy.go; -->
@@ -1617,7 +1616,7 @@ JSON Example:
1617
1616
1618
1617
<!-- Code generated from the comments of the ConfigParamsConfig struct in builder/vsphere/common/step_config_params.go; DO NOT EDIT MANUALLY -->
1619
1618
1620
-
-`configuration_parameters` (map[string]string) - A map of key-value pairs to sent to the [`extraConfig`](https://dp-downloads.broadcom.com/api-content/apis/API_VWSA_001/8.0U3/html/ReferenceGuides/vim.vm.ConfigSpec.html#extraConfig).
1619
+
-`configuration_parameters` (map[string]string) - A map of key-value pairs to send to the [`extraConfig`](https://dp-downloads.broadcom.com/api-content/apis/API_VWSA_001/8.0U3/html/ReferenceGuides/vim.vm.ConfigSpec.html#extraConfig).
1621
1620
in the vSphere API's `VirtualMachineConfigSpec`.
1622
1621
1623
1622
HCL Example:
@@ -1641,7 +1640,7 @@ JSON Example:
1641
1640
```
1642
1641
1643
1642
~> **Note:** Configuration keys that would conflict with parameters that
1644
-
are explicitly configurable through other fields in the `ConfigSpec`` object
1643
+
are explicitly configurable through other fields in the `ConfigSpec` object
1645
1644
are silently ignored. Refer to the [`VirtualMachineConfigSpec`](https://dp-downloads.broadcom.com/api-content/apis/API_VWSA_001/8.0U3/html/ReferenceGuides/vim.vm.ConfigSpec.html)
Copy file name to clipboardExpand all lines: builder/vsphere/common/step_config_params.go
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ import (
20
20
)
21
21
22
22
typeConfigParamsConfigstruct {
23
-
// A map of key-value pairs to sent to the [`extraConfig`](https://dp-downloads.broadcom.com/api-content/apis/API_VWSA_001/8.0U3/html/ReferenceGuides/vim.vm.ConfigSpec.html#extraConfig).
23
+
// A map of key-value pairs to send to the [`extraConfig`](https://dp-downloads.broadcom.com/api-content/apis/API_VWSA_001/8.0U3/html/ReferenceGuides/vim.vm.ConfigSpec.html#extraConfig).
24
24
// in the vSphere API's `VirtualMachineConfigSpec`.
25
25
//
26
26
// HCL Example:
@@ -44,7 +44,7 @@ type ConfigParamsConfig struct {
44
44
// ```
45
45
//
46
46
// ~> **Note:** Configuration keys that would conflict with parameters that
47
-
// are explicitly configurable through other fields in the `ConfigSpec`` object
47
+
// are explicitly configurable through other fields in the `ConfigSpec` object
48
48
// are silently ignored. Refer to the [`VirtualMachineConfigSpec`](https://dp-downloads.broadcom.com/api-content/apis/API_VWSA_001/8.0U3/html/ReferenceGuides/vim.vm.ConfigSpec.html)
0 commit comments