From ce3d6e9ee56677040b673c2381de7071d9ad0376 Mon Sep 17 00:00:00 2001 From: Blake Johnson Date: Wed, 1 May 2024 14:40:48 -0500 Subject: [PATCH] feat: reduce function call names --- ape_aws/kms/_cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ape_aws/kms/_cli.py b/ape_aws/kms/_cli.py index 291a914..be9bbd5 100644 --- a/ape_aws/kms/_cli.py +++ b/ape_aws/kms/_cli.py @@ -35,7 +35,7 @@ def kms(): """Manage AWS KMS keys""" -@kms.command() +@kms.command(name="create") @ape_cli_context() @click.option( "-a", @@ -116,7 +116,7 @@ def create_key( cli_ctx.logger.success(f"Key created successfully with ID: {key_id}") -@kms.command() +@kms.command(name="delete") @ape_cli_context() @click.argument("alias_name") @click.option("-d", "--days", default=30, help="Number of days until key is deactivated")