Skip to content

Commit

Permalink
cli task step --aws-tags option
Browse files Browse the repository at this point in the history
  • Loading branch information
RikishK committed Nov 18, 2024
1 parent b90d75a commit bb237b8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions metaflow/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,11 @@ def dump(obj, input_path, private=None, max_value_size=None, include=None, file=
type=click.Choice(["none", UBF_CONTROL, UBF_TASK]),
help="Provides additional context if this task is of type unbounded foreach.",
)
@click.option(
"--aws-tags",
multiple=True,
default=None,
help="AWS tags.")
@click.option(
"--num-parallel",
default=0,
Expand All @@ -412,6 +417,7 @@ def step(
clone_run_id=None,
decospecs=None,
ubf_context="none",
aws_tags=None,
num_parallel=None,
):
if ubf_context == "none":
Expand Down

0 comments on commit bb237b8

Please sign in to comment.