Skip to content

Commit

Permalink
$824 - linting
Browse files Browse the repository at this point in the history
  • Loading branch information
obriensystems authored Feb 29, 2024
1 parent 341c177 commit 9153511
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions solutions/gcloud/gcloud-lz-up.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ example
EOF
}

# for eash of override - key/value pairs for constants - shared by all scripts
source vars.sh
# for ease of override - key/value pairs for constants - shared by all scripts
PATH="."
source $PATH/vars.sh

echo "Landing Zone orchestration start"

Expand Down Expand Up @@ -73,7 +74,7 @@ create_core_landing_zone() {
gcloud services enable compute.googleapis.com

echo "Create VPC: ${NETWORK}"
gcloud compute networks create $NETWORK --subnet-mode=custom
gcloud compute networks create "$NETWORK" --subnet-mode=custom
echo "Create subnet ${SUBNET} off VPC: ${NETWORK}"
gcloud compute networks subnets create "$SUBNET" --network "$NETWORK" --range "$CIDR_VPC" --region "$REGION"
}
Expand Down

0 comments on commit 9153511

Please sign in to comment.