Skip to content

Commit

Permalink
fix: r/resouce_pool scaleable shares (#2255)
Browse files Browse the repository at this point in the history
Removes the default setting for `scale_descendants_shares` to allows for inheritance from the parent resource pool.

Ref: #1763

Signed-off-by: Jared Burns <[email protected]>
  • Loading branch information
burnsjared0415 authored Sep 3, 2024
1 parent 871485a commit 5d7a516
Show file tree
Hide file tree
Showing 2 changed files with 8 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 @@
# <!-- markdownlint-disable first-line-h1 no-inline-html -->

## 2.9.1 (Not Released)

BUG FIX:

* `resource/vsphere_resource_pool`: Removes the default setting for `scale_descendants_shares` to
allows for inheritance from the parent resource pool.
([#2255]https://github.com/hashicorp/terraform-provider-vsphere/pull/2255)

## 2.9.0 (September 3, 2024)

FEATURES:
Expand Down
1 change: 0 additions & 1 deletion vsphere/resource_vsphere_resource_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ func resourceVSphereResourcePool() *schema.Resource {
Type: schema.TypeString,
Description: "Determines if the shares of all descendants of the resource pool are scaled up or down when the shares of the resource pool are scaled up or down.",
Optional: true,
Default: string(types.ResourceConfigSpecScaleSharesBehaviorDisabled),
ValidateFunc: validation.StringInSlice(resourcePoolScaleDescendantsSharesAllowedValues, false),
},
vSphereTagAttributeKey: tagsSchema(),
Expand Down

0 comments on commit 5d7a516

Please sign in to comment.