Problems with Environment Variables

by bhavikchavdaon 8/28/2024, 10:23 AMwith 0 comments

I started thinking that the purpose of environment variables is lost or changed. I saw it's getting used for, - Enabling/Disabling functionality - Storing credentials - System defaults etc.

The main problems with environment variables are, - Hard to maintain (familiar with secret management tools) - Updated only on startup or compile of application

Do you guys also face these problems?

0