From a4337a24301e6a87f4aeb01e8d063ed91a07a366 Mon Sep 17 00:00:00 2001 From: polarctos Date: Thu, 22 Aug 2024 09:58:16 +0200 Subject: [PATCH] Fix config encryption CLI command in guide The config command in the Quarkus CLI changed. Usage: quarkus config set [-ehk] [--verbose] NAME [VALUE] --- docs/src/main/asciidoc/config-secrets.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/config-secrets.adoc b/docs/src/main/asciidoc/config-secrets.adoc index bebee8a9b6a8f..ec1a0c0e761ab 100644 --- a/docs/src/main/asciidoc/config-secrets.adoc +++ b/docs/src/main/asciidoc/config-secrets.adoc @@ -33,7 +33,7 @@ Use the Quarkus CLI command to add a new encrypted value or encrypt an existent **** [source, bash] ---- -quarkus config set --encrypt --name=my.secret --value=1234 +quarkus config set --encrypt my.secret 1234 ---- _For more information about how to install the Quarkus CLI and use it, please refer to xref:cli-tooling.adoc[the Quarkus CLI guide]._