Skip to content

Commit

Permalink
Fix VNET peering help text #9051. (#9156)
Browse files Browse the repository at this point in the history
  • Loading branch information
tjprescott authored and yugangw-msft committed Apr 23, 2019
1 parent cfd1885 commit 00d4ce5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1075,9 +1075,9 @@ def load_arguments(self, _):
c.argument('remote_virtual_network', options_list=['--remote-vnet', c.deprecate(target='--remote-vnet-id', hide=True, expiration='2.1.0')], help='Resource ID or name of the remote VNet.')

with self.argument_context('network vnet peering create') as c:
c.argument('allow_virtual_network_access', options_list='--allow-vnet-access', action='store_true', help='Allows VMs in the local VNet to access all VMs in the remov VNet.')
c.argument('allow_virtual_network_access', options_list='--allow-vnet-access', action='store_true', help='Allows access from the local VNet to the remote VNet.')
c.argument('allow_gateway_transit', action='store_true', help='Allows gateway link to be used in the remote VNet.')
c.argument('allow_forwarded_traffic', action='store_true', help='Allows forwarded traffic from the VMs in the remote VNet.')
c.argument('allow_forwarded_traffic', action='store_true', help='Allows forwarded traffic from the local VNet to the remote VNet.')
c.argument('use_remote_gateways', action='store_true', help='Allows VNet to use the remote VNet\'s gateway. Remote VNet gateway must have --allow-gateway-transit enabled for remote peering. Only 1 peering can have this flag enabled. Cannot be set if the VNet already has a gateway.')

with self.argument_context('network vnet subnet') as c:
Expand Down

0 comments on commit 00d4ce5

Please sign in to comment.