diff --git a/README.md b/README.md index d24256a..ab99c50 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # okms-cli [![build](https://github.com/ovh/okms-cli/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/ovh/okms-cli/actions/workflows/build.yaml) -[![license](https://img.shields.io/badge/license-Apache%202.0-red.svg?style=flat)](https://raw.githubusercontent.com/ovh/okms-sdk-go/master/LICENSE) +[![license](https://img.shields.io/badge/license-Apache%202.0-red.svg?style=flat)](https://raw.githubusercontent.com/ovh/okms-sdk-go/master/LICENSE) [![Go Report Card](https://goreportcard.com/badge/github.com/ovh/okms-cli)](https://goreportcard.com/report/github.com/ovh/okms-cli) The CLI to interact with your [OVHcloud KMS](https://help.ovhcloud.com/csm/en-ie-kms-quick-start?id=kb_article_view&sysparm_article=KB0063362) services. diff --git a/common/config/yubikey.go b/common/config/yubikey.go index 4eb30e2..74c568f 100644 --- a/common/config/yubikey.go +++ b/common/config/yubikey.go @@ -57,7 +57,7 @@ func (epCfg *yubikeyAuth) TlsCertificates() []tls.Certificate { // FIXME: Where / How to close the connection ? // The issue preventing us from deferring the close is that we - // return a tls.Certificate thta have a remote private key / signer that requires + // return a tls.Certificate that have a remote private key / signer that requires // the connection to stay open. Anyway, the connection will be closed on program exit, so we may not // need to close it by ourself. However it would be cleaner. // defer yubiKey.Close()