We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f3aac4 commit edc3d0cCopy full SHA for edc3d0c
src/azure-cli/azure/cli/command_modules/network/custom.py
@@ -6019,6 +6019,12 @@ def pre_operations(self):
6019
'private_ip_allocation_method': 'Dynamic',
6020
'name': 'vnetGatewayConfig{}'.format(i)}
6021
args.ip_configurations.append(ip_configuration[i])
6022
+ else:
6023
+ ip_configuration = {'subnet': subnet,
6024
+ 'private_ip_allocation_method': 'Dynamic',
6025
+ 'name': 'vnetGatewayConfig'}
6026
+ args.ip_configurations.append(ip_configuration)
6027
+
6028
else:
6029
args.vpn_type = None
6030
args.sku = None
0 commit comments