Skip to content

Commit

Permalink
capitalize words
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvaingaudan committed Nov 15, 2024
1 parent 66c5508 commit dd9df4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arlas/cli/configurations.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ def create_configuration(
print("Configuration {} created.".format(name))


@configurations.command(help="Add a configuration for arlas cloud", name="login")
@configurations.command(help="Add a configuration for ARLAS Cloud", name="login")
def login(
auth_login: str = typer.Argument(help="login"),
elastic_login: str = typer.Argument(help="elasticsearch login"),
elastic: str = typer.Argument(help="elasticsearch url"),
elastic_login: str = typer.Argument(help="Elasticsearch login"),
elastic: str = typer.Argument(help="Elasticsearch url"),
auth_org: str = typer.Option(default=None, help="ARLAS IAM Organization, default is your email domain name"),
allow_delete: bool = typer.Option(default=True, help="Is delete command allowed for this configuration?"),
auth_password: str = typer.Option(default=None, help="password"),
auth_password: str = typer.Option(default=None, help="ARLAS password"),
elastic_password: str = typer.Option(default=None, help="elasticsearch password")
):
if not re.match(r'^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$', auth_login):
Expand Down

0 comments on commit dd9df4a

Please sign in to comment.