Many SASS providers in the Software Development ecosystem provide capabilities that allow a user to store secret parameters, encrypted, to be referenced inside scripts.
I would like the ability to create encrypted secrets in my organization's workspace that can then be referenced and used within all the scripts that I wanna create. This ensures that the secrets are not stored as plain text within your system and prevents prying eyes.
For example:
Admin > Settings > Secrets
Add secret
MY_API_SECRET_AUTH_TOKEN = *******************
In a Javascript script
make_api_request( {{ secrets.MY_API_SECRET_AUTH_TOKEN }} );
Github has a good article that explains their implementation - Encrypted secrets - GitHub Docs