diff --git a/pkg/modules/api/api.go b/pkg/modules/api/api.go index 9320400d..cabe2888 100644 --- a/pkg/modules/api/api.go +++ b/pkg/modules/api/api.go @@ -309,7 +309,7 @@ func (a *Api) Validate() error { if (a.tlsCertFile != "" && a.tlsKeyFile == "") || (a.tlsCertFile == "" && a.tlsKeyFile != "") { err = multierr.Append(err, - errors.New("tls certificate and key file must both be set"), + errors.New("both TLS certificate and key files must be set"), ) }