Skip to content

Commit

Permalink
fixup! Added support for listing, creating and deleting organization …
Browse files Browse the repository at this point in the history
…secrets
  • Loading branch information
juanpardo committed Sep 26, 2023
1 parent 6834aaf commit cb20055
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions croud/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand All @@ -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,
Expand Down

0 comments on commit cb20055

Please sign in to comment.