Explorar el Código

change Azure provisioning dropdowns (#3438)

Co-authored-by: David Townley <davidtownley@Davids-MacBook-Air.local>
d-g-town hace 2 años
padre
commit
97ff2e45fb
Se han modificado 1 ficheros con 0 adiciones y 22 borrados
  1. 0 22
      dashboard/src/components/AzureProvisionerSettings.tsx

+ 0 - 22
dashboard/src/components/AzureProvisionerSettings.tsx

@@ -30,9 +30,6 @@ import Text from "./porter/Text";
 
 
 const locationOptions = [
 const locationOptions = [
   { value: "eastus", label: "East US" },
   { value: "eastus", label: "East US" },
-  { value: "westus2", label: "West US 2" },
-  { value: "westus3", label: "West US 3" },
-  { value: "canadacentral", label: "Central Canada" },
 ];
 ];
 
 
 const machineTypeOptions = [
 const machineTypeOptions = [
@@ -299,25 +296,6 @@ const AzureProvisionerSettings: React.FC<Props> = (props) => {
             setActiveValue={setAzureLocation}
             setActiveValue={setAzureLocation}
             label="📍 Azure location"
             label="📍 Azure location"
           />
           />
-          <SelectRow
-            options={machineTypeOptions}
-            width="350px"
-            disabled={isReadOnly}
-            value={machineType}
-            scrollBuffer={true}
-            dropdownMaxHeight="240px"
-            setActiveValue={setMachineType}
-            label="Machine type"
-          />
-          <InputRow
-            width="350px"
-            type="string"
-            disabled={isReadOnly}
-            value={cidrRange}
-            setValue={(x: string) => setCidrRange(x)}
-            label="VPC CIDR range"
-            placeholder="ex: 10.78.0.0/16"
-          />
         </>
         </>
       );
       );
     }
     }