Skip to content

Commit

Permalink
fix: add 8.0.3 to dvSwitchVersion
Browse files Browse the repository at this point in the history
Adds 8.0.3 to the allowed `dvSwitchVersion` to support vSphere 8.0 U3.

igned-off-by: Ryan Johnson <ryan.johnson@broadcom.com>
  • Loading branch information
tenthirtyam committed Dec 4, 2024
1 parent facc44a commit 3da551c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG

## v0.13.1

> Release Date: Not Released
BUG FIXES:

- Adds 8.0.3 to the allowed `dvSwitchVersion` to support vSphere 8.0 U3. [#270](https://github.com/vmware/terraform-provider-vcf/pull/270)

## [v0.13.0](https://github.com/vmware/terraform-provider-vcf/releases/tag/v0.13.0)

> Release Date: 2024-11-26
Expand Down
2 changes: 1 addition & 1 deletion internal/provider/resource_vcf_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
validationutils "github.com/vmware/terraform-provider-vcf/internal/validation"
)

var dvSwitchVersions = []string{"7.0.0", "7.0.2", "7.0.3", "8.0.0"}
var dvSwitchVersions = []string{"7.0.0", "7.0.2", "7.0.3", "8.0.0", "8.0.3"}

func ResourceVcfInstance() *schema.Resource {
return &schema.Resource{
Expand Down

0 comments on commit 3da551c

Please sign in to comment.