From ebfac47cea96b19b03250ab91b28ffcd8d687747 Mon Sep 17 00:00:00 2001 From: spbsoluble <1661003+spbsoluble@users.noreply.github.com> Date: Wed, 23 Oct 2024 14:05:12 -0700 Subject: [PATCH] chore(docs): Update docs Signed-off-by: spbsoluble <1661003+spbsoluble@users.noreply.github.com> --- cmd/inventory.go | 4 ++-- docs/kfutil.md | 1 + docs/kfutil_completion.md | 1 + docs/kfutil_completion_bash.md | 1 + docs/kfutil_completion_fish.md | 1 + docs/kfutil_completion_powershell.md | 1 + docs/kfutil_completion_zsh.md | 1 + docs/kfutil_containers.md | 1 + docs/kfutil_containers_get.md | 1 + docs/kfutil_containers_list.md | 1 + docs/kfutil_export.md | 1 + docs/kfutil_helm.md | 1 + docs/kfutil_helm_uo.md | 1 + docs/kfutil_import.md | 1 + docs/kfutil_login.md | 1 + docs/kfutil_logout.md | 1 + docs/kfutil_orchs.md | 1 + docs/kfutil_orchs_approve.md | 1 + docs/kfutil_orchs_disapprove.md | 1 + docs/kfutil_orchs_ext.md | 1 + docs/kfutil_orchs_get.md | 1 + docs/kfutil_orchs_list.md | 1 + docs/kfutil_orchs_logs.md | 1 + docs/kfutil_orchs_reset.md | 1 + docs/kfutil_pam.md | 1 + docs/kfutil_pam_create.md | 1 + docs/kfutil_pam_delete.md | 1 + docs/kfutil_pam_get.md | 1 + docs/kfutil_pam_list.md | 1 + docs/kfutil_pam_types-create.md | 1 + docs/kfutil_pam_types-list.md | 1 + docs/kfutil_pam_update.md | 1 + docs/kfutil_status.md | 1 + docs/kfutil_store-types.md | 1 + docs/kfutil_store-types_create.md | 1 + docs/kfutil_store-types_delete.md | 1 + docs/kfutil_store-types_get.md | 1 + docs/kfutil_store-types_list.md | 1 + docs/kfutil_store-types_templates-fetch.md | 1 + docs/kfutil_stores.md | 1 + docs/kfutil_stores_delete.md | 1 + docs/kfutil_stores_export.md | 1 + docs/kfutil_stores_get.md | 1 + docs/kfutil_stores_import.md | 1 + docs/kfutil_stores_import_csv.md | 1 + docs/kfutil_stores_import_generate-template.md | 1 + docs/kfutil_stores_inventory.md | 1 + docs/kfutil_stores_inventory_add.md | 1 + docs/kfutil_stores_inventory_fixrfpkcs12.md | 5 +++-- docs/kfutil_stores_inventory_remove.md | 1 + docs/kfutil_stores_inventory_show.md | 1 + docs/kfutil_stores_list.md | 1 + docs/kfutil_stores_rot.md | 1 + docs/kfutil_stores_rot_audit.md | 1 + docs/kfutil_stores_rot_generate-template.md | 1 + docs/kfutil_stores_rot_reconcile.md | 1 + docs/kfutil_version.md | 1 + 57 files changed, 60 insertions(+), 4 deletions(-) diff --git a/cmd/inventory.go b/cmd/inventory.go index e81b948e..c54d26c3 100644 --- a/cmd/inventory.go +++ b/cmd/inventory.go @@ -607,11 +607,11 @@ var inventoryFixRFPKCS12 = &cobra.Command{ Long: `Fix RFPKCS12 stores that contain 2 or more leaf certificates, by removing the certificate with the earliest issued date.`, Example: ` # The below will create a CSV file that can be reviewed and modified before running the command with the --file option. -kfutil stores inventory fixrfpkcs12 +kfutil stores inventory fixrfpkcs12 --exp # The below will read the CSV file and schedule remove jobs as specified in the file where the 'Action' col is "REMOVE". # The --force flag is *required* to actually schedule the remove jobs for the certificates. -kfutil stores inventory fixrfpkcs12 --file rfpkcs12_fix.csv --force +kfutil stores inventory fixrfpkcs12 --file rfpkcs12_fix.csv --force --exp `, ValidArgs: nil, ValidArgsFunction: nil, diff --git a/docs/kfutil.md b/docs/kfutil.md index ae927e11..253584e8 100644 --- a/docs/kfutil.md +++ b/docs/kfutil.md @@ -21,6 +21,7 @@ A CLI wrapper around the Keyfactor Platform API. --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_completion.md b/docs/kfutil_completion.md index c005a1e7..755ea748 100644 --- a/docs/kfutil_completion.md +++ b/docs/kfutil_completion.md @@ -28,6 +28,7 @@ See each sub-command's help for details on how to use the generated script. --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_completion_bash.md b/docs/kfutil_completion_bash.md index 1b64ff27..a1bf05c6 100644 --- a/docs/kfutil_completion_bash.md +++ b/docs/kfutil_completion_bash.md @@ -51,6 +51,7 @@ kfutil completion bash --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_completion_fish.md b/docs/kfutil_completion_fish.md index 973265f8..8b611f7b 100644 --- a/docs/kfutil_completion_fish.md +++ b/docs/kfutil_completion_fish.md @@ -42,6 +42,7 @@ kfutil completion fish [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_completion_powershell.md b/docs/kfutil_completion_powershell.md index 111a40aa..fbf830c4 100644 --- a/docs/kfutil_completion_powershell.md +++ b/docs/kfutil_completion_powershell.md @@ -39,6 +39,7 @@ kfutil completion powershell [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_completion_zsh.md b/docs/kfutil_completion_zsh.md index 5487b6f5..3a8c7983 100644 --- a/docs/kfutil_completion_zsh.md +++ b/docs/kfutil_completion_zsh.md @@ -53,6 +53,7 @@ kfutil completion zsh [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_containers.md b/docs/kfutil_containers.md index 147b8170..ed5cc559 100644 --- a/docs/kfutil_containers.md +++ b/docs/kfutil_containers.md @@ -26,6 +26,7 @@ A collections of APIs and utilities for interacting with Keyfactor certificate s --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_containers_get.md b/docs/kfutil_containers_get.md index d3bb95e0..b374d24c 100644 --- a/docs/kfutil_containers_get.md +++ b/docs/kfutil_containers_get.md @@ -31,6 +31,7 @@ kfutil containers get [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_containers_list.md b/docs/kfutil_containers_list.md index 438b8423..fb96eb8a 100644 --- a/docs/kfutil_containers_list.md +++ b/docs/kfutil_containers_list.md @@ -30,6 +30,7 @@ kfutil containers list [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_export.md b/docs/kfutil_export.md index cbdb610f..f09ca617 100644 --- a/docs/kfutil_export.md +++ b/docs/kfutil_export.md @@ -42,6 +42,7 @@ kfutil export [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_helm.md b/docs/kfutil_helm.md index 597a574c..a7eabb9f 100644 --- a/docs/kfutil_helm.md +++ b/docs/kfutil_helm.md @@ -32,6 +32,7 @@ kubectl helm uo | helm install -f - keyfactor-universal-orchestrator keyfactor/k --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_helm_uo.md b/docs/kfutil_helm_uo.md index c4446283..38bb9e52 100644 --- a/docs/kfutil_helm_uo.md +++ b/docs/kfutil_helm_uo.md @@ -37,6 +37,7 @@ kfutil helm uo [-t ] [-o ] [-f ] [-e -e @,@ -o ./app/extension --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_orchs_get.md b/docs/kfutil_orchs_get.md index e4736f9a..36d9b494 100644 --- a/docs/kfutil_orchs_get.md +++ b/docs/kfutil_orchs_get.md @@ -31,6 +31,7 @@ kfutil orchs get [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_orchs_list.md b/docs/kfutil_orchs_list.md index 38945b17..e541b057 100644 --- a/docs/kfutil_orchs_list.md +++ b/docs/kfutil_orchs_list.md @@ -30,6 +30,7 @@ kfutil orchs list [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_orchs_logs.md b/docs/kfutil_orchs_logs.md index 72dfecaf..038171ab 100644 --- a/docs/kfutil_orchs_logs.md +++ b/docs/kfutil_orchs_logs.md @@ -31,6 +31,7 @@ kfutil orchs logs [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_orchs_reset.md b/docs/kfutil_orchs_reset.md index c6f0957d..0b315cee 100644 --- a/docs/kfutil_orchs_reset.md +++ b/docs/kfutil_orchs_reset.md @@ -31,6 +31,7 @@ kfutil orchs reset [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_pam.md b/docs/kfutil_pam.md index 8199b61a..834be612 100644 --- a/docs/kfutil_pam.md +++ b/docs/kfutil_pam.md @@ -28,6 +28,7 @@ programmatically create, delete, edit, and list PAM Providers. --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_pam_create.md b/docs/kfutil_pam_create.md index b536fb64..4a1e5f1e 100644 --- a/docs/kfutil_pam_create.md +++ b/docs/kfutil_pam_create.md @@ -31,6 +31,7 @@ kfutil pam create [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_pam_delete.md b/docs/kfutil_pam_delete.md index a0a537f7..a09f152f 100644 --- a/docs/kfutil_pam_delete.md +++ b/docs/kfutil_pam_delete.md @@ -31,6 +31,7 @@ kfutil pam delete [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_pam_get.md b/docs/kfutil_pam_get.md index 0f2e7f20..3812f01b 100644 --- a/docs/kfutil_pam_get.md +++ b/docs/kfutil_pam_get.md @@ -31,6 +31,7 @@ kfutil pam get [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_pam_list.md b/docs/kfutil_pam_list.md index ed64c102..507dd927 100644 --- a/docs/kfutil_pam_list.md +++ b/docs/kfutil_pam_list.md @@ -30,6 +30,7 @@ kfutil pam list [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_pam_types-create.md b/docs/kfutil_pam_types-create.md index be5d84fe..023bf179 100644 --- a/docs/kfutil_pam_types-create.md +++ b/docs/kfutil_pam_types-create.md @@ -38,6 +38,7 @@ kfutil pam types-create [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_pam_types-list.md b/docs/kfutil_pam_types-list.md index 10e234ce..51b573e0 100644 --- a/docs/kfutil_pam_types-list.md +++ b/docs/kfutil_pam_types-list.md @@ -30,6 +30,7 @@ kfutil pam types-list [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_pam_update.md b/docs/kfutil_pam_update.md index 26e8d342..6467f2f2 100644 --- a/docs/kfutil_pam_update.md +++ b/docs/kfutil_pam_update.md @@ -31,6 +31,7 @@ kfutil pam update [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_status.md b/docs/kfutil_status.md index 413e5f26..1b6dcc7d 100644 --- a/docs/kfutil_status.md +++ b/docs/kfutil_status.md @@ -30,6 +30,7 @@ kfutil status [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_store-types.md b/docs/kfutil_store-types.md index c2f2d5e1..8bd3ccb5 100644 --- a/docs/kfutil_store-types.md +++ b/docs/kfutil_store-types.md @@ -26,6 +26,7 @@ A collections of APIs and utilities for interacting with Keyfactor certificate s --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_store-types_create.md b/docs/kfutil_store-types_create.md index d10daa3e..e6a87d05 100644 --- a/docs/kfutil_store-types_create.md +++ b/docs/kfutil_store-types_create.md @@ -35,6 +35,7 @@ kfutil store-types create [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_store-types_delete.md b/docs/kfutil_store-types_delete.md index 9668789b..d572d118 100644 --- a/docs/kfutil_store-types_delete.md +++ b/docs/kfutil_store-types_delete.md @@ -34,6 +34,7 @@ kfutil store-types delete [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_store-types_get.md b/docs/kfutil_store-types_get.md index e26d995c..7d54067e 100644 --- a/docs/kfutil_store-types_get.md +++ b/docs/kfutil_store-types_get.md @@ -35,6 +35,7 @@ kfutil store-types get [-i | -n ] [-b --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_store-types_list.md b/docs/kfutil_store-types_list.md index 0c8394b0..f8e18dae 100644 --- a/docs/kfutil_store-types_list.md +++ b/docs/kfutil_store-types_list.md @@ -30,6 +30,7 @@ kfutil store-types list [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_store-types_templates-fetch.md b/docs/kfutil_store-types_templates-fetch.md index 3f88a97b..3252f0eb 100644 --- a/docs/kfutil_store-types_templates-fetch.md +++ b/docs/kfutil_store-types_templates-fetch.md @@ -31,6 +31,7 @@ kfutil store-types templates-fetch [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores.md b/docs/kfutil_stores.md index 51be7a1a..1f2fa40f 100644 --- a/docs/kfutil_stores.md +++ b/docs/kfutil_stores.md @@ -26,6 +26,7 @@ A collections of APIs and utilities for interacting with Keyfactor certificate s --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_delete.md b/docs/kfutil_stores_delete.md index 5b248da8..9b62b921 100644 --- a/docs/kfutil_stores_delete.md +++ b/docs/kfutil_stores_delete.md @@ -33,6 +33,7 @@ kfutil stores delete [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_export.md b/docs/kfutil_stores_export.md index 5fb180f9..10fd3b82 100644 --- a/docs/kfutil_stores_export.md +++ b/docs/kfutil_stores_export.md @@ -34,6 +34,7 @@ kfutil stores export [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_get.md b/docs/kfutil_stores_get.md index d5aa5cc3..76833100 100644 --- a/docs/kfutil_stores_get.md +++ b/docs/kfutil_stores_get.md @@ -31,6 +31,7 @@ kfutil stores get [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_import.md b/docs/kfutil_stores_import.md index 0bbf1a00..4144bca6 100644 --- a/docs/kfutil_stores_import.md +++ b/docs/kfutil_stores_import.md @@ -26,6 +26,7 @@ Tools for generating import templates and importing certificate stores --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_import_csv.md b/docs/kfutil_stores_import_csv.md index 9c0cf0bb..994d744e 100644 --- a/docs/kfutil_stores_import_csv.md +++ b/docs/kfutil_stores_import_csv.md @@ -38,6 +38,7 @@ kfutil stores import csv --file --store-type-id --store-t --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_inventory.md b/docs/kfutil_stores_inventory.md index de68904b..38a018a1 100644 --- a/docs/kfutil_stores_inventory.md +++ b/docs/kfutil_stores_inventory.md @@ -26,6 +26,7 @@ Commands related to certificate store inventory management --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_inventory_add.md b/docs/kfutil_stores_inventory_add.md index cc65b84a..838e9006 100644 --- a/docs/kfutil_stores_inventory_add.md +++ b/docs/kfutil_stores_inventory_add.md @@ -44,6 +44,7 @@ kfutil stores inventory add [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_inventory_fixrfpkcs12.md b/docs/kfutil_stores_inventory_fixrfpkcs12.md index d2e9adfa..306005d6 100644 --- a/docs/kfutil_stores_inventory_fixrfpkcs12.md +++ b/docs/kfutil_stores_inventory_fixrfpkcs12.md @@ -15,11 +15,11 @@ kfutil stores inventory fixrfpkcs12 [flags] ``` # The below will create a CSV file that can be reviewed and modified before running the command with the --file option. -kfutil stores inventory fixrfpkcs12 +kfutil stores inventory fixrfpkcs12 --exp # The below will read the CSV file and schedule remove jobs as specified in the file where the 'Action' col is "REMOVE". # The --force flag is *required* to actually schedule the remove jobs for the certificates. -kfutil stores inventory fixrfpkcs12 --file rfpkcs12_fix.csv --force +kfutil stores inventory fixrfpkcs12 --file rfpkcs12_fix.csv --force --exp ``` @@ -45,6 +45,7 @@ kfutil stores inventory fixrfpkcs12 --file rfpkcs12_fix.csv --force --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_inventory_remove.md b/docs/kfutil_stores_inventory_remove.md index 2ac7ee6f..27edfaa9 100644 --- a/docs/kfutil_stores_inventory_remove.md +++ b/docs/kfutil_stores_inventory_remove.md @@ -40,6 +40,7 @@ kfutil stores inventory remove [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_inventory_show.md b/docs/kfutil_stores_inventory_show.md index a7ed434e..cd3a7489 100644 --- a/docs/kfutil_stores_inventory_show.md +++ b/docs/kfutil_stores_inventory_show.md @@ -34,6 +34,7 @@ kfutil stores inventory show [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_list.md b/docs/kfutil_stores_list.md index cce48a5c..e13d7ec3 100644 --- a/docs/kfutil_stores_list.md +++ b/docs/kfutil_stores_list.md @@ -30,6 +30,7 @@ kfutil stores list [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_rot.md b/docs/kfutil_stores_rot.md index a54018f2..cb30b79c 100644 --- a/docs/kfutil_stores_rot.md +++ b/docs/kfutil_stores_rot.md @@ -38,6 +38,7 @@ kfutil stores rot reconcile --import-csv --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_rot_audit.md b/docs/kfutil_stores_rot_audit.md index a19d7448..df9cc1ba 100644 --- a/docs/kfutil_stores_rot_audit.md +++ b/docs/kfutil_stores_rot_audit.md @@ -38,6 +38,7 @@ kfutil stores rot audit [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_rot_generate-template.md b/docs/kfutil_stores_rot_generate-template.md index a13afa7c..1f307857 100644 --- a/docs/kfutil_stores_rot_generate-template.md +++ b/docs/kfutil_stores_rot_generate-template.md @@ -36,6 +36,7 @@ kfutil stores rot generate-template [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_stores_rot_reconcile.md b/docs/kfutil_stores_rot_reconcile.md index ea57c108..1d27793e 100644 --- a/docs/kfutil_stores_rot_reconcile.md +++ b/docs/kfutil_stores_rot_reconcile.md @@ -43,6 +43,7 @@ kfutil stores rot reconcile [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command. diff --git a/docs/kfutil_version.md b/docs/kfutil_version.md index 58142cae..6cba39cf 100644 --- a/docs/kfutil_version.md +++ b/docs/kfutil_version.md @@ -30,6 +30,7 @@ kfutil version [flags] --hostname string Hostname to use for authenticating to Keyfactor Command. --log-insecure Log insecure API requests. (USE AT YOUR OWN RISK, this WILL log sensitive information to the console.) --no-prompt Do not prompt for any user input and assume defaults or environmental variables are set. + --offline Will not attempt to connect to GitHub for latest release information and resources. --password string Password to use for authenticating to Keyfactor Command. WARNING: Remember to delete your console history if providing kfcPassword here in plain text. --profile string Use a specific profile from your config file. If not specified the config named 'default' will be used if it exists. --username string Username to use for authenticating to Keyfactor Command.