File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed
src/_nebari/stages/infrastructure Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ class AzureInputVars(schema.Base):
115115 name : str
116116 environment : str
117117 region : str
118+ authorized_ip_ranges : List [str ] = ["0.0.0.0/0" ]
118119 kubeconfig_filename : str = get_kubeconfig_filename ()
119120 kubernetes_version : str
120121 node_groups : Dict [str , AzureNodeGroupInputVars ]
@@ -338,12 +339,6 @@ class GCPMasterAuthorizedNetworksConfig(schema.Base):
338339 cidr_blocks : List [GCPCIDRBlock ]
339340
340341
341- class GCPPrivateClusterConfig (schema .Base ):
342- enable_private_endpoint : bool
343- enable_private_nodes : bool
344- master_ipv4_cidr_block : str
345-
346-
347342class GCPGuestAccelerator (schema .Base ):
348343 """
349344 See general information regarding GPU support at:
@@ -421,6 +416,7 @@ class AzureProvider(schema.Base):
421416 region : str
422417 kubernetes_version : Optional [str ] = None
423418 storage_account_postfix : str
419+ authorized_ip_ranges : Optional [List [str ]] = ["0.0.0.0/0" ]
424420 resource_group_name : Optional [str ] = None
425421 node_groups : Dict [str , AzureNodeGroup ] = DEFAULT_AZURE_NODE_GROUPS
426422 storage_account_postfix : str
You can’t perform that action at this time.
0 commit comments