You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a scenario where I have to use the same script multiple times with different parameters. (ie: I have to count emails number in several mailboxes).
The script_exporter is able to do that well but it is insecure and cumbersome to do this since I have to hardcode passwords directly in the config file. Ssee example below:
The script exporter should be able to parse environment variables written in the "args" and "env" section of a script inside the config.yaml file. This way, no sensitive information would be written onto the config file (and it will also improve readability IMO)
Problem
I have a scenario where I have to use the same script multiple times with different parameters. (ie: I have to count emails number in several mailboxes).
The script_exporter is able to do that well but it is insecure and cumbersome to do this since I have to hardcode passwords directly in the config file. Ssee example below:
Solution
The script exporter should be able to parse environment variables written in the "args" and "env" section of a script inside the config.yaml file. This way, no sensitive information would be written onto the config file (and it will also improve readability IMO)
Example:
Prerequisites existing environment variables:
MYEMAIL_1
MYEMAIL_USERNAME_1
MYEMAIL_PASSWORD_1
MYEMAIL_2
MYEMAIL_USERNAME_2
MYEMAIL_PASSWORD_2
MYEMAIL_3
MYEMAIL_USERNAME_3
MYEMAIL_PASSWORD_3
The text was updated successfully, but these errors were encountered: