diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-01-08 13:55:47 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-01-08 13:55:47 +0100 |
commit | 975715da5b2c1d31be466b17bc7a25c1999ed28d (patch) | |
tree | df28c86180c753d28ce563daeed272c0bb833540 /scripts/03-update-network-for-dataproc.sh | |
parent | 83c3fa60c752486d2b4d0001b6fad3ee31fb9672 (diff) |
Use params instead of `read` function
Diffstat (limited to 'scripts/03-update-network-for-dataproc.sh')
-rwxr-xr-x | scripts/03-update-network-for-dataproc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/03-update-network-for-dataproc.sh b/scripts/03-update-network-for-dataproc.sh index 2d27945..c091f22 100755 --- a/scripts/03-update-network-for-dataproc.sh +++ b/scripts/03-update-network-for-dataproc.sh @@ -1,6 +1,6 @@ #!/bin/sh gcloud compute networks subnets update default \ - --region $REGION \ + --region=${REGION} \ --enable-private-ip-google-access |