-
Notifications
You must be signed in to change notification settings - Fork 93
/
vsphere-remote-windows-10-amd64.json
128 lines (128 loc) · 5.03 KB
/
vsphere-remote-windows-10-amd64.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"variables": {
"vm_name": "windows10",
"cpu": "2",
"ram_size": "2048",
"disk_size": "41440",
"iso_url": "http://care.dlservice.microsoft.com/dl/download/B/8/B/B8B452EC-DD2D-4A8F-A88C-D2180C177624/15063.0.170317-1834.RS2_RELEASE_CLIENTENTERPRISEEVAL_OEMRET_X64FRE_EN-US.ISO",
"iso_checksum_type": "sha1",
"iso_checksum": "6C60F91BF0AD7B20F469AB8F80863035C517F34F",
"vsphere_host": "{{env `vsphere_host`}}",
"vsphere_datacenter": "{{env `vsphere_datacenter`}}",
"vsphere_cluster": "{{env `vsphere_cluster`}}",
"vsphere_resource_pool": "{{env `vsphere_resource_pool`}}",
"vsphere_datastore": "{{env `vsphere_datastore`}}",
"vsphere_cache_datastore": "{{env `vsphere_datastore`}}",
"vsphere_cache_directory": "iso_cache",
"vsphere_vm_network": "{{env `vsphere_vm_network`}}",
"vsphere_username": "{{env `vsphere_username`}}",
"vsphere_password": "{{env `vsphere_password`}}",
"vsphere_ethernet0_dvs_switch_id":"50 21 6c c7 55 a8 c0 ef-e3 64 b4 cd bc 81 c4 a3",
"vsphere_ethernet0_dvs_portgroup_id" : "dvportgroup-152",
"username" : "vagrant",
"password" : "vagrant"
},
"builders": [
{
"vm_name":"{{user `vm_name`}}",
"output_directory": "output-{{user `vm_name`}}",
"remote_type":"esx5",
"remote_host":"{{user `vsphere_cluster`}}",
"remote_datastore":"{{user `vsphere_datastore`}}",
"remote_cache_datastore":"{{user `vsphere_cache_datastore`}}",
"remote_cache_directory":"{{user `vsphere_cache_directory`}}",
"remote_username":"{{user `vsphere_username`}}",
"remote_password": "{{user `vsphere_password`}}",
"type": "vmware-iso",
"boot_wait": "5s",
"disk_size": "{{user `disk_size`}}",
"disk_type_id": "thin",
"floppy_files": [
"./windows/windows-10-amd64/autounattend.xml",
"./windows/windows-10-amd64/sysprep-unattend.xml",
"./windows/common/variables.ps1",
"./windows/common/set-power-config.ps1",
"./windows/common/microsoft-updates.ps1",
"./windows/common/win-updates.ps1",
"./windows/common/run-sysprep.ps1",
"./windows/common/run-sysprep.cmd",
"./windows/common/enable-winrm.ps1",
"./windows/common/enable-winrm.task.ps1",
"./windows/common/fixnetwork.ps1",
"./windows/common/Set-ClientWSUSSetting.ps1",
"./windows/common/Set-ClientWSUSSetting.task.ps1",
"./windows/common/elevate.exe",
"./windows/common/sdelete.exe",
"./windows/common/sdelete.ps1",
"./windows/common/vmware/drivers/pvscsi64",
"./windows/common/vmware/drivers/vmxnet3"
],
"guest_os_type": "windows8srv-64",
"headless": false,
"disable_vnc": true,
"iso_url": "{{user `iso_url`}}",
"iso_checksum_type": "{{user `iso_checksum_type`}}",
"iso_checksum": "{{user `iso_checksum`}}",
"communicator":"winrm",
"winrm_username": "{{user `username`}}",
"winrm_password": "{{user `password`}}",
"winrm_timeout": "4h",
"shutdown_command": "a:\\run-sysprep.cmd",
"skip_compaction": false,
"vmx_data": {
"gui.fitguestusingnativedisplayresolution": "FALSE",
"memsize": "{{user `ram_size`}}",
"numvcpus": "{{user `cpu`}}",
"virtualhw.productcompatibility" : "esx",
"virtualHW.version": "10",
"scsi0.virtualDev": "pvscsi",
"ethernet0.virtualDev": "vmxnet3",
"ethernet0.present": "TRUE",
"ethernet0.connectionType":"bridged",
"ethernet0.startConnected" : "TRUE",
"ethernet0.dvs.switchId":"{{user `vsphere_ethernet0_dvs_switch_id`}}",
"ethernet0.dvs.portgroupId" : "{{user `vsphere_ethernet0_dvs_portgroup_id`}}"
},
"vmx_data_post": {
"ide0:0.startConnected": "FALSE",
"ide0:1.startConnected": "FALSE",
"ide1:0.startConnected": "FALSE",
"ide1:1.startConnected": "FALSE",
"ide0:0.deviceType": "cdrom-raw",
"ide0:1.deviceType": "cdrom-raw",
"ide1:0.deviceType": "cdrom-raw",
"ide1:1.deviceType": "cdrom-raw",
"ide0:0.clientDevice": "TRUE",
"ide0:1.clientDevice": "TRUE",
"ide1:0.clientDevice": "TRUE",
"ide1:1.clientDevice": "TRUE",
"ide0:0.present": "FALSE",
"ide0:1.present": "FALSE",
"ide1:0.present": "TRUE",
"ide1:1.present": "FALSE",
"ide0:0.fileName": "emptyBackingString",
"ide0:1.fileName": "emptyBackingString",
"ide1:0.fileName": "emptyBackingString",
"ide1:1.fileName": "emptyBackingString"
}
}],
"provisioners": [{
"type": "powershell",
"elevated_user": "{{user `username`}}",
"elevated_password": "{{user `password`}}",
"scripts": [
"./windows/common/install-7zip.ps1",
"./windows/common/install-vmware-tools.ps1",
"./windows/common/install-chef.ps1",
"./windows/common/install-openssh.ps1",
"./windows/common/install-sshkey.ps1",
"./windows/common/compile-dotnet-assemblies.ps1",
"./windows/common/cleanup.ps1",
"./windows/common/ultradefrag.ps1",
"./windows/common/optimize-drive.ps1",
"./windows/common/sdelete.ps1"
]
}],
"post-processors": [
]
}