Skip to content

Commit 97889d2

Browse files
authored
chore(deps): bumperraform-provider-vsphere from v2.6.1 to v2.7.0 (#866)
Bumps Terraform Provider for vSphere (`hashicorpn/terraform-provider-vsphere`)from v2.6.1 to v2.7.0. Signed-off-by: Ryan Johnson <ryan.johnson@broadcom.com>
1 parent c799aa2 commit 97889d2

File tree

16 files changed

+23
-18
lines changed

16 files changed

+23
-18
lines changed

CHANGELOG.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,23 @@
1414
- Adds Windows Server 2025 Insiders Preview. [GH-834](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/834)
1515
- Adds Ansible integration for Windows Server 2025, 2022, and 2019 images. [GH-801](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/801)
1616
- Adds Ansible integration for Windows 11 and 10 images. [GH-801](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/801)
17+
- Adds option to enable a content library to source all guest operating system ISOs or use a datastore path. Defaults to `false`, disabled.
18+
Set `common_iso_content_library_enabled` to `true` to enable use of a content library for all guest operating system ISOs.
19+
- Adds option to enable a content library for the placement of virtual machine images builds. Defaults to `true`, enabled.
20+
Set `common_content_library_enabled` to `false` to disable use of a content library for saving virtual machine image builds.
1721

1822
:wrench: **Refactor**:
1923

20-
- Refactors the Ubuntu image builds **not** to use cloud-init by default. Set `vm_guest_os_cloudinit` to `true` to enable cloud-init on the machine image. [GH-#](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/#)
24+
- Refactors the Ubuntu builds **not** to use cloud-init, by default. [GH-#](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/#)
25+
Set `vm_guest_os_cloudinit` to `true` to enable cloud-init on the machine image.
2126

2227
:sweat_drops: **Chore**:
2328

2429
- Updates `required_versions` for `packer` to `>= 1.10.0`. [GH-828](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/828)
2530
- Updates `required_plugins` for `packer-plugin-vsphere` to `>= 1.2.4`. [GH-824](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/824)
2631
- Updates `required_plugins` for `ethanmdavidson/packer-plugin-git` to `>= 0.6.1`. [GH-827](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/827)
2732
- Updates `required_versions` for `terraform` to `>= 1.7.1`. [GH-8297](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/829)
28-
- Updates `required_versions` for `hashicorp/vsphere` to `>= 2.6.1`. [GH-830](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/830)
33+
- Updates `required_versions` for `hashicorp/vsphere` to `>= 2.7.0`. [GH-866](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/866)
2934
- Updates `required_versions` for `hashicorp/hcp` to `>= 0.81.0`. [GH-831](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/831)
3035
- Updates Gomplate to `3.11.7`. [GH-825](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/825)
3136
- Updates Red Hat Enterprise Linux 9 to 9.3 release. [GH-819](https://github.com/vmware-samples/packer-examples-for-vsphere/pull/819)
@@ -401,7 +406,7 @@
401406

402407
```hcl
403408
common_template_conversion = true
404-
common_content_library_name = null
409+
common_content_library = null
405410
common_content_library_ovf = false
406411
common_content_library_destroy = false
407412
```

terraform/vsphere-role/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
vsphere = {
88
source = "hashicorp/vsphere"
9-
version = ">= 2.6.1"
9+
version = ">= 2.7.0"
1010
}
1111
}
1212
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/content-library-ovf-linux-cloud-init-hcp-packer/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010
}
1111
vsphere = {
1212
source = "hashicorp/vsphere"
13-
version = ">= 2.6.1"
13+
version = ">= 2.7.0"
1414
}
1515
}
1616
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/content-library-ovf-linux-cloud-init/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
vsphere = {
88
source = "hashicorp/vsphere"
9-
version = ">= 2.6.1"
9+
version = ">= 2.7.0"
1010
}
1111
}
1212
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/content-library-ovf-linux-guest-customization-hcp-packer/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010
}
1111
vsphere = {
1212
source = "hashicorp/vsphere"
13-
version = ">= 2.6.1"
13+
version = ">= 2.7.0"
1414
}
1515
}
1616
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/content-library-ovf-linux-guest-customization/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
vsphere = {
88
source = "hashicorp/vsphere"
9-
version = ">= 2.6.1"
9+
version = ">= 2.7.0"
1010
}
1111
}
1212
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/content-library-ovf-windows-guest-customization-hcp-packer/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010
}
1111
vsphere = {
1212
source = "hashicorp/vsphere"
13-
version = ">= 2.6.1"
13+
version = ">= 2.7.0"
1414
}
1515
}
1616
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/content-library-ovf-windows-guest-customization/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
vsphere = {
88
source = "hashicorp/vsphere"
9-
version = ">= 2.6.1"
9+
version = ">= 2.7.0"
1010
}
1111
}
1212
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/content-library-template-linux-guest-customization-hcp-packer/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010
}
1111
vsphere = {
1212
source = "hashicorp/vsphere"
13-
version = ">= 2.6.1"
13+
version = ">= 2.7.0"
1414
}
1515
}
1616
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/content-library-template-windows-guest-customization-hcp-packer/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010
}
1111
vsphere = {
1212
source = "hashicorp/vsphere"
13-
version = ">= 2.6.1"
13+
version = ">= 2.7.0"
1414
}
1515
}
1616
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/template-linux-cloud-init-hcp-packer/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010
}
1111
vsphere = {
1212
source = "hashicorp/vsphere"
13-
version = ">= 2.6.1"
13+
version = ">= 2.7.0"
1414
}
1515
}
1616
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/template-linux-cloud-init/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
vsphere = {
88
source = "hashicorp/vsphere"
9-
version = ">= 2.6.1"
9+
version = ">= 2.7.0"
1010
}
1111
}
1212
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/template-linux-guest-customization-hcp-packer/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010
}
1111
vsphere = {
1212
source = "hashicorp/vsphere"
13-
version = ">= 2.6.1"
13+
version = ">= 2.7.0"
1414
}
1515
}
1616
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/template-linux-guest-customization/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
vsphere = {
88
source = "hashicorp/vsphere"
9-
version = ">= 2.6.1"
9+
version = ">= 2.7.0"
1010
}
1111
}
1212
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/template-windows-guest-customization-hcp-packer/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ terraform {
1010
}
1111
vsphere = {
1212
source = "hashicorp/vsphere"
13-
version = ">= 2.6.1"
13+
version = ">= 2.7.0"
1414
}
1515
}
1616
required_version = ">= 1.7.1"

terraform/vsphere-virtual-machine/template-windows-guest-customization/versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ terraform {
66
required_providers {
77
vsphere = {
88
source = "hashicorp/vsphere"
9-
version = ">= 2.6.1"
9+
version = ">= 2.7.0"
1010
}
1111
}
1212
required_version = ">= 1.7.1"

0 commit comments

Comments
 (0)