Skip to content

Commit

Permalink
chore: add deployment descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolnar-zscaler committed Dec 11, 2023
1 parent d08a636 commit 8886dfa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion examples/zsec
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,20 @@ fi

if [[ "$oper" == "up" ]]; then
PS3="${CYAN}Select desired deployment: ${RESET}"
deployments=("greenfield" "brownfield")
deployments=("greenfield - Recommended for isolated test/POV deployments. Creates new network infrastructure, test workloads, and a public jump host" "brownfield - Recommended for prod deployments. Bring-your-own existing network infrastructure customizations + no workload/bastion creation")
select deployment in "${deployments[@]}"
do
case $REPLY in
1)
echo "Greenfield deployment selected..."
echo "${YELLOW}**Caution** These deployments include test workloads and publicly accessible jump hosts and are intended primarily for lab/test environments${RESET}"
echo ""
deployment=greenfield
break
;;
2)
echo "Brownfield deployment selected..."
deployemt=brownfield
break
;;
*)
Expand Down

0 comments on commit 8886dfa

Please sign in to comment.