Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ IMPROVEMENTS:
BUG FIXES:

- Fix regression in instance_pool ds when matching by name #455
- Fix bug in SKS: `enable_kube_proxy` is always `true` #457

## 0.65.0

Expand Down
4 changes: 2 additions & 2 deletions exoscale/resource_exoscale_sks_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -303,8 +303,8 @@ func resourceSKSClusterCreate(ctx context.Context, d *schema.ResourceData, meta
createReq.AutoUpgrade = &autoUpgrade
}

if enableKubeProxy, isSet := d.GetOk(resSKSClusterAttrEnableKubeProxy); isSet {
v := enableKubeProxy.(bool)
if !d.GetRawConfig().GetAttr(resSKSClusterAttrEnableKubeProxy).IsNull() {
v := d.Get(resSKSClusterAttrEnableKubeProxy).(bool)
createReq.EnableKubeProxy = &v
}

Expand Down
Loading