diff --git a/setenv.sh b/setenv.sh index d8601eb6f..00bf366e8 100644 --- a/setenv.sh +++ b/setenv.sh @@ -10,6 +10,11 @@ export AWS_SECRET_ACCESS_KEY="$(echo "${data}" | jq -r '.Credentials.SecretAcces export AWS_SESSION_TOKEN="$(echo "${data}" | jq -r '.Credentials.SessionToken')" export AWS_SECURITY_TOKEN="$(echo "${data}" | jq -r '.Credentials.SessionToken')" export GITHUB_OAUTH_TOKEN="$(cat /etc/github/oauth)" +export DOCUSIGN_INTEGRATOR_KEY="$(cat ./DOCUSIGN_INTEGRATOR_KEY.secret)" +export DOCUSIGN_USER_ID="$(cat ./DOCUSIGN_USER_ID.secret)" +export DOCUSIGN_AUTH_SERVER="$(cat ./DOCUSIGN_AUTH_SERVER.secret)" +export DOCUSIGN_ROOT_URL="$(cat ./DOCUSIGN_ROOT_URL.secret)" +export DOCUSIGN_ACCOUNT_ID="$(cat ./DOCUSIGN_ACCOUNT_ID.secret)" export AWS_SDK_LOAD_CONFIG=true export AWS_PROFILE='lfproduct-dev' diff --git a/unsetenv.sh b/unsetenv.sh index 6a6eb3b73..6786d186c 100644 --- a/unsetenv.sh +++ b/unsetenv.sh @@ -20,3 +20,8 @@ unset AWS_ROLE_ARN unset AWS_TOKEN_SERIAL unset AWS_SDK_LOAD_CONFIG unset GITHUB_OAUTH_TOKEN +unset DOCUSIGN_INTEGRATOR_KEY +unset DOCUSIGN_USER_ID +unset DOCUSIGN_AUTH_SERVER +unset DOCUSIGN_ROOT_URL +unset DOCUSIGN_ACCOUNT_ID