From 890d52688631807c82911fcf3609ce7619f1fcb9 Mon Sep 17 00:00:00 2001 From: Ernest Rekel Date: Sun, 10 Nov 2024 23:39:44 +0200 Subject: [PATCH] docs: fix `tls_skip_verify` wording --- docs/index.md | 2 +- provider/provider.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 6c75784..63994a6 100644 --- a/docs/index.md +++ b/docs/index.md @@ -40,4 +40,4 @@ provider "teampasswordmanager" { ### Optional - `api_version` (String, Deprecated) Api version to use (defaults to v5). Lower versions than v4 might not work correctly or at all. For more information https://teampasswordmanager.com/docs -- `tls_skip_verify` (Boolean) Whether the TLS certificate should be verified (defaults to false). +- `tls_skip_verify` (Boolean) Whether the TLS certificate verification should be skipped (defaults to false). diff --git a/provider/provider.go b/provider/provider.go index 6df7eb8..5a6011c 100644 --- a/provider/provider.go +++ b/provider/provider.go @@ -66,7 +66,7 @@ func Provider() *schema.Provider { Optional: true, DefaultFunc: schema.EnvDefaultFunc(envConfigTLSSkipVerify, tpm.DefaultTLSSkipVerify), Description: fmt.Sprintf( - "Whether the TLS certificate should be verified (defaults to %t).", + "Whether the TLS certificate verification should be skipped (defaults to %t).", tpm.DefaultTLSSkipVerify, ), },