This message was deleted.
# automation-api
s
This message was deleted.
c
best way I found to do this so far is to get the env vars with
os.Environ()
and insert them into the local workspace when creating it
s
That’s the same technique I use; I don’t know if there’s a “better” way of doing it.
🙏 1
c
Thanks, I can't get it to see the configuration set (in a file) by
gcloud config set
. Do you know of a solution for that?
s
I don’t know of a solution other than to
os.Exec
the
gcloud
command you need and parse the output, which is a hack at best but might work.
c
thanks! that's what I implemented 🙂
s
LOL 😄