From 45753c1905e8370787084b4331ed9491dd96d7e7 Mon Sep 17 00:00:00 2001 From: Fabian Fuelling Date: Sun, 15 Aug 2021 08:51:57 +0200 Subject: [PATCH] Add description about usage to --env-file and --s3-env-file parameters --- ecs_deploy/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ecs_deploy/cli.py b/ecs_deploy/cli.py index 6a3cdd9..d60a24a 100644 --- a/ecs_deploy/cli.py +++ b/ecs_deploy/cli.py @@ -37,8 +37,8 @@ def get_client(access_key_id, secret_access_key, region, profile): @click.option('--privileged', type=(str, bool), multiple=True, help='Overwrites the privileged value for a container: ') @click.option('--essential', type=(str, bool), multiple=True, help='Overwrites the essential value for a container: ') @click.option('-e', '--env', type=(str, str, str), multiple=True, help='Adds or changes an environment variable: ') -@click.option('--env-file', type=(str, str), default=((None, None),), multiple=True, required=False, help='Load environment variables from .env-file') -@click.option('--s3-env-file', type=(str, str), multiple=True, required=False, help='Location of .env-file in S3 in ARN format (eg arn:aws:s3:::/bucket_name/object_name') +@click.option('--env-file', type=(str, str), default=((None, None),), multiple=True, required=False, help='Load environment variables from .env-file: ') +@click.option('--s3-env-file', type=(str, str), multiple=True, required=False, help='Location of .env-file in S3 in ARN format (eg arn:aws:s3:::/bucket_name/object_name): ') @click.option('-s', '--secret', type=(str, str, str), multiple=True, help='Adds or changes a secret environment variable from the AWS Parameter Store (Not available for Fargate): ') @click.option('-d', '--docker-label', type=(str, str, str), multiple=True, help='Adds or changes a docker label: ') @click.option('-u', '--ulimit', type=(str, str, int, int), multiple=True, help='Adds or changes a ulimit variable in the container description (Not available for Fargate): ')