diff --git a/internal/config/config.go b/internal/config/config.go index 8c896583e9..f1fb5ae75d 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -834,8 +834,8 @@ func (c *Config) Validate(force bool) error { } if c.InternalLoadBalancer { - if c.GetProvider() != cloudprovider.AWS && c.GetProvider() != cloudprovider.GCP { - return &ValidationError{validationErrMsgs: []string{"internalLoadBalancer is only supported for AWS and GCP"}} + if c.GetProvider() != cloudprovider.Azure && c.GetProvider() != cloudprovider.AWS && c.GetProvider() != cloudprovider.GCP { + return &ValidationError{validationErrMsgs: []string{"internalLoadBalancer is only supported for AWS, Azure, and GCP"}} } }