Skip to content

Commit b30c95c

Browse files
committed
fix(contrib/digitalocean) fix region check
Fix the allowed region checks. This used to only allow 4 (New York 2), and not any of the others.
1 parent 94435fe commit b30c95c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

contrib/digitalocean/provision-do-cluster.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if [ -z "$DEIS_NUM_INSTANCES" ]; then
3232
DEIS_NUM_INSTANCES=3
3333
fi
3434

35-
regions_with_private_networking=(4 5 6 7)
35+
regions_with_private_networking="4 5 6 7"
3636
if ! listcontains "$regions_with_private_networking" "$1";
3737
then
3838
echo_red "Invalid region. Please supply a region with private networking support."

0 commit comments

Comments
 (0)