From cb20055462d0cbffa2fc59d2abb78b4b0e0bf993 Mon Sep 17 00:00:00 2001 From: Juan Pardo Date: Tue, 26 Sep 2023 11:01:35 +0200 Subject: [PATCH] fixup! Added support for listing, creating and deleting organization secrets --- croud/__main__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/croud/__main__.py b/croud/__main__.py index 59898be7..5ad66512 100644 --- a/croud/__main__.py +++ b/croud/__main__.py @@ -1036,7 +1036,7 @@ ), Argument( "--name", type=str, required=True, - help="The name the Secret will be known as.", + help="The name the secret will be known as.", ), Argument( "--type", type=str, required=True, choices=["AWS"], @@ -1055,7 +1055,8 @@ "resolver": org_secrets_create, }, "delete": { - "help": "Lists all the secrets that belong to an organization.", + "help": "Deletes the secret that matches the given ID for the " + "organization specified.", "extra_args": [ Argument( "--org-id", type=str, required=True,