I have a requirement where in i want to run a python script from a Linux server (AWS sandbox), the purpose of the script is to connect to snowflake database and do some stuff, for connecting to snowflake via a python script i do not want to hard code the password in the script and want the script to get the password from a restricted file.
i know how i did it in windows - i used the credentials manager to store the password and the scripts gets the password from there, i am looking for a similar kind of solution for Linux.