diff --git a/command/audit_disable.go b/command/audit_disable.go index 4d31fb0484..47d6e7ee09 100644 --- a/command/audit_disable.go +++ b/command/audit_disable.go @@ -73,7 +73,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/audit_enable.go b/command/audit_enable.go index 72b94982d1..ef000a5303 100644 --- a/command/audit_enable.go +++ b/command/audit_enable.go @@ -105,7 +105,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/audit_list.go b/command/audit_list.go index d93e5d2685..3eac40df24 100644 --- a/command/audit_list.go +++ b/command/audit_list.go @@ -88,7 +88,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/auth.go b/command/auth.go index 788c5725a7..456dbc7257 100644 --- a/command/auth.go +++ b/command/auth.go @@ -238,7 +238,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. Auth Options: diff --git a/command/auth_disable.go b/command/auth_disable.go index 05db71fe60..296a68cd39 100644 --- a/command/auth_disable.go +++ b/command/auth_disable.go @@ -72,7 +72,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/auth_enable.go b/command/auth_enable.go index cc1e1602aa..969ebb08e5 100644 --- a/command/auth_enable.go +++ b/command/auth_enable.go @@ -80,7 +80,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/delete.go b/command/delete.go index 8a124770d4..09f5332a1c 100644 --- a/command/delete.go +++ b/command/delete.go @@ -70,7 +70,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/help.go b/command/help.go index ffa0d2eb1e..f832f07bc6 100644 --- a/command/help.go +++ b/command/help.go @@ -69,7 +69,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/init.go b/command/init.go index 78d0d61d34..5e638f5d33 100644 --- a/command/init.go +++ b/command/init.go @@ -90,7 +90,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/meta.go b/command/meta.go index eb97ae5027..2ec04e9fd5 100644 --- a/command/meta.go +++ b/command/meta.go @@ -169,6 +169,7 @@ func (m *Meta) FlagSet(n string, fs FlagSetFlags) *flag.FlagSet { f.StringVar(&m.flagCACert, "ca-cert", "", "") f.StringVar(&m.flagCAPath, "ca-path", "", "") f.BoolVar(&m.flagInsecure, "insecure", false, "") + f.BoolVar(&m.flagInsecure, "tls-skip-verify", false, "") } // Create an io.Writer that writes to our Ui properly for errors. diff --git a/command/mount.go b/command/mount.go index 3f9bb42b0a..d9abe51346 100644 --- a/command/mount.go +++ b/command/mount.go @@ -79,7 +79,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/mounts.go b/command/mounts.go index 378cf03b1a..c950d3d348 100644 --- a/command/mounts.go +++ b/command/mounts.go @@ -76,7 +76,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/policy_delete.go b/command/policy_delete.go index 13c3a2b8b4..e378302705 100644 --- a/command/policy_delete.go +++ b/command/policy_delete.go @@ -68,7 +68,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/policy_list.go b/command/policy_list.go index ec7fb19beb..ff53b5b294 100644 --- a/command/policy_list.go +++ b/command/policy_list.go @@ -95,7 +95,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/policy_write.go b/command/policy_write.go index 16f14789fb..f92ba4874a 100644 --- a/command/policy_write.go +++ b/command/policy_write.go @@ -92,7 +92,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/read.go b/command/read.go index 6b7bbf74d0..62604da5a0 100644 --- a/command/read.go +++ b/command/read.go @@ -75,7 +75,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/remount.go b/command/remount.go index 1fa923e213..786a97dd01 100644 --- a/command/remount.go +++ b/command/remount.go @@ -76,7 +76,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/renew.go b/command/renew.go index f9cc944230..f3794936e1 100644 --- a/command/renew.go +++ b/command/renew.go @@ -88,7 +88,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/revoke.go b/command/revoke.go index 47e363a6fd..5458f3b376 100644 --- a/command/revoke.go +++ b/command/revoke.go @@ -78,7 +78,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/seal.go b/command/seal.go index 69222fb9bd..0fb13e548c 100644 --- a/command/seal.go +++ b/command/seal.go @@ -66,7 +66,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/status.go b/command/status.go index 2204b23a4c..1efb31744f 100644 --- a/command/status.go +++ b/command/status.go @@ -107,7 +107,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/token_create.go b/command/token_create.go index af66815074..85107e3fde 100644 --- a/command/token_create.go +++ b/command/token_create.go @@ -96,7 +96,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/token_renew.go b/command/token_renew.go index 2d05733658..98a38ea828 100644 --- a/command/token_renew.go +++ b/command/token_renew.go @@ -85,7 +85,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/token_revoke.go b/command/token_revoke.go index 3ad724163a..e63ce257fd 100644 --- a/command/token_revoke.go +++ b/command/token_revoke.go @@ -97,7 +97,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/unmount.go b/command/unmount.go index a97948dd54..1a366ea2dd 100644 --- a/command/unmount.go +++ b/command/unmount.go @@ -70,7 +70,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/unseal.go b/command/unseal.go index 680f57cd94..f7d7aceb5c 100644 --- a/command/unseal.go +++ b/command/unseal.go @@ -109,7 +109,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault. diff --git a/command/write.go b/command/write.go index 856fcd9f70..fefa23e72d 100644 --- a/command/write.go +++ b/command/write.go @@ -113,7 +113,7 @@ General Options: to verify the Vault server SSL certificate. If both -ca-cert and -ca-path are specified, -ca-path is used. - -insecure Do not verify TLS certificate. This is highly + -tls-skip-verify Do not verify TLS certificate. This is highly not recommended. This is especially not recommended for unsealing a vault.