Skip to content

Commit

Permalink
docs: fix tls_skip_verify wording
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestre committed Nov 10, 2024
1 parent 15c883b commit 890d526
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
2 changes: 1 addition & 1 deletion provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
),
},
Expand Down

0 comments on commit 890d526

Please sign in to comment.