Mention multiple option for tags in VM define

This commit is contained in:
Joshua Boniface 2021-07-14 01:11:07 -04:00
parent 6d4c26c8d8
commit 8f3b68d48a
1 changed files with 2 additions and 2 deletions

View File

@ -641,12 +641,12 @@ def cli_vm():
@click.option( @click.option(
'-g', '--tag', 'user_tags', '-g', '--tag', 'user_tags',
default=[], multiple=True, default=[], multiple=True,
help='User tag(s) for the VM.' help='User tag for the VM; can be specified multiple times, once per tag.'
) )
@click.option( @click.option(
'-G', '--protected-tag', 'protected_tags', '-G', '--protected-tag', 'protected_tags',
default=[], multiple=True, default=[], multiple=True,
help='Protected user tag(s) for the VM.' help='Protected user tag for the VM; can be specified multiple times, once per tag.'
) )
@click.argument( @click.argument(
'vmconfig', type=click.File() 'vmconfig', type=click.File()