summaryrefslogtreecommitdiff
path: root/.zsh/zshenv/99_gcloud
blob: add747d9f88534f0158600064ba9a7718b6c64c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# zshenv/99_gcloud
#
# Copyright © 2022 Tobias Klauser <tklauser@distanz.ch>
# Released under the terms of the Artistic Licence 2.0
#
# Source repository: git://git.distanz.ch/dotfiles/zsh.git

path_append $HOME/google-cloud-sdk/bin

if [ -x $(which gcloud) ] ; then
  export CLOUDSDK_COMPUTE_REGION=europe-west6
  export CLOUDSDK_COMPUTE_ZONE=europe-west6-b
fi

# vim:ft=zsh