Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

{Azure Bastion} documentation fix and update preview flag #7576

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/bastion/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Release History
===============
1.0.0
++++++
* Removing preview flag and update MFA documentation.

0.3.0
++++++
* Removing preview flag.
Expand Down
2 changes: 1 addition & 1 deletion src/bastion/azext_bastion/_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def load_arguments(self, _): # pylint: disable=unused-argument
arg_type=get_three_state_flag())
c.argument("auth_type", help="Auth type to use for RDP connections.", required=False,
options_list=["--auth-type"])
c.argument('enable_mfa', help='Enable RDS auth for MFA if supported by the target machine.',
c.argument('enable_mfa', help='Login to AAD enabled Windows machines using new protocol that authenticates using MFA if supported by target machine. Available on Windows 10 20H2+, Windows 11 21H2+, WS 2022.',
arg_type=get_three_state_flag())
with self.argument_context("network bastion tunnel") as c:
c.argument("port", help="Local port to use for the tunneling.", options_list=["--port"])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@register_command_group(
"network",
is_preview=True,
is_preview=False,
)
class __CMDGroup(AAZCommandGroup):
"""Manage Azure Network resources.
Expand Down
2 changes: 1 addition & 1 deletion src/bastion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


# HISTORY.rst entry.
VERSION = '0.3.0'
VERSION = '1.0.0'

# The full list of classifiers is available at
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down
Loading