See what my ENV Variable resolves to

I have an older developer that set up my build…and he put in an ENV variable to a external URL…Is there a way to find out what decodes to for circle ci

You can’t from the CircleCI.com UI. Perhaps print the contents of the variable to a file while SSHing into the build? Or even save the file as an artifact.

1 Like

You can also echo it as a part of your build.

echo $ENVAR

Of course, if this is a secret you would be better off doing this over SSH so that it is not a part of your build ouput.