Skip to content

Commit

Permalink
fix: change internal lb parsing on k8s env
Browse files Browse the repository at this point in the history
  • Loading branch information
ianaya89 committed Dec 5, 2023
1 parent 1d9b688 commit 2b1a8ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/env/k8s/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func loadBalancersToSDK(loadBalancers *LoadBalancersModel) *client.K8SEnvLoadBal

if loadBalancers.Internal != nil {
internal = &client.K8SEnvLoadBalancerInternalSpecInput{
Enabled: loadBalancers.Public.Enabled.ValueBoolPointer(),
Enabled: loadBalancers.Internal.Enabled.ValueBoolPointer(),
Annotations: common.KeyValueToSDK(loadBalancers.Internal.Annotations),
SourceIPRanges: common.ListStringToSDK(loadBalancers.Internal.SourceIPRanges),
}
Expand Down

0 comments on commit 2b1a8ea

Please sign in to comment.