Skip to content

Commit

Permalink
fold long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
thyton committed Mar 27, 2024
1 parent f1c5acf commit f916f7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@

### Improvements

* Allow TLS client to use the host's root CA set when no CA certificates are provided and `disable_local_ca_jwt` is true if running Vault in a Kubernetes pod. Additionally, validate the configuration's provided CA PEM bundle. [GH-238](https://github.com/hashicorp/vault-plugin-auth-kubernetes/pull/238)
* Allow TLS client to use the host's root CA set when no CA certificates are provided and
`disable_local_ca_jwt` is true if running Vault in a Kubernetes pod. Additionally, validate the
configuration's provided CA PEM bundle. [GH-238](https://github.com/hashicorp/vault-plugin-auth-kubernetes/pull/238)

## 0.18.0 (Feb 2, 2024)

Expand Down
4 changes: 3 additions & 1 deletion path_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,9 @@ func (b *kubeAuthBackend) pathConfigWrite(ctx context.Context, req *logical.Requ
}

if caCert != "" && !hasCerts(caCert) {
return logical.ErrorResponse("The provided CA PEM data contains no valid certificates"), nil
return logical.ErrorResponse(
"The provided CA PEM data contains no valid certificates",
), nil
}

config := &kubeConfig{
Expand Down

0 comments on commit f916f7e

Please sign in to comment.