Skip to content

Commit

Permalink
fix OS setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoltan Illes committed Nov 9, 2022
1 parent 831d02f commit ff4e34d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibm/service/kubernetes/resource_ibm_container_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ func resourceIBMContainerClusterCreate(d *schema.ResourceData, meta interface{})
params.MasterVersion = v.(string)
}
if v, ok := d.GetOk("operating_system"); ok {
params.MasterVersion = v.(string)
params.OperatingSystem = v.(string)
}
if v, ok := d.GetOkExists("private_service_endpoint"); ok {
params.PrivateEndpointEnabled = v.(bool)
Expand Down

0 comments on commit ff4e34d

Please sign in to comment.