I have a secret key stored in the Secret manager of GCP. The idea is to use that secret key to get the budget list using cloud functions.
Right now, I can access that key from my code, but the problem that I'm facing is that I need to set an environment variable with that secret key.
This is the way in which I could add the secret key (if you have in your local directory that file), but is there another way?
os.environ["GOOGLE_APPLICATION_CREDENTIALS"] = "seret_key_file.json"