You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/azure-cli/azure/cli/command_modules/appservice/_params.py
+3
Original file line number
Diff line number
Diff line change
@@ -159,6 +159,7 @@ def load_arguments(self, _):
159
159
c.argument('vnet', help="Name or resource ID of the regional virtual network. If there are multiple vnets of the same name across different resource groups, use vnet resource id to specify which vnet to use. If vnet name is used, by default, the vnet in the same resource group as the webapp will be used. Must be used with --subnet argument.")
160
160
c.argument('subnet', help="Name or resource ID of the pre-existing subnet to have the webapp join. The --vnet is argument also needed if specifying subnet by name.")
161
161
c.argument('public_network_access', help="Enable or disable public access to the web app", arg_type=get_enum_type(PUBLIC_NETWORK_ACCESS_MODES))
162
+
c.argument('basic_auth', options_list=['--basic-auth'], help='Enable or disable basic auth.')
c.argument('minimum_elastic_instance_count', options_list=["--minimum-elastic-instance-count", "-i"], type=int, is_preview=True, help="Minimum number of instances. App must be in an elastic scale App Service Plan.")
210
211
c.argument('prewarmed_instance_count', options_list=["--prewarmed-instance-count", "-w"], type=int, is_preview=True, help="Number of preWarmed instances. App must be in an elastic scale App Service Plan.")
212
+
c.argument('basic_auth', options_list=['--basic-auth'], help='Enable or disable basic auth.')
c.argument('html', help="Ignore app detection and deploy as an html app", default=False, action='store_true')
690
692
c.argument('app_service_environment', options_list=['--app-service-environment', '-e'], help='name or resource ID of the (pre-existing) App Service Environment to deploy to. Requires an Isolated V2 sku [I1v2, I2v2, I3v2]')
693
+
c.argument('basic_auth', options_list=['--basic-auth'], help='Enable or disable basic auth.')
0 commit comments