Skip to content

Commit

Permalink
feat: zsec support for new vm type selections
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolnar-zscaler committed Oct 7, 2024
1 parent 828bae5 commit d2deb55
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion examples/zsec
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ first_run="yes"
esac
done
else
vm_sizes=("Standard_D2s_v3" "Standard_DS2_v2" "Standard_DS3_v2")
vm_sizes=("Standard_D2ds_v5" "Standard_D2ds_v4" "Standard_D2s_v3" "Standard_DS2_v2" "Standard_DS3_v2")
select ccvm_instance_type in "${vm_sizes[@]}"
do
case $REPLY in
Expand All @@ -543,6 +543,16 @@ first_run="yes"
echo "export TF_VAR_ccvm_instance_type='$ccvm_instance_type'" >> .zsecrc
break
;;
4)
echo "Cloud Connector VM type $ccvm_instance_type selected"
echo "export TF_VAR_ccvm_instance_type='$ccvm_instance_type'" >> .zsecrc
break
;;
5)
echo "Cloud Connector VM type $ccvm_instance_type selected"
echo "export TF_VAR_ccvm_instance_type='$ccvm_instance_type'" >> .zsecrc
break
;;
*)
echo "${RED}Invalid response. Please enter a number selection${RESET}"
esac
Expand Down

0 comments on commit d2deb55

Please sign in to comment.