I am looking for a safe method of storing an api-key, that is being used inside a Google cloud function.
Process: I am using Monday.com to create a webhook, to call the Google cloud functions Entry Point. From here, i am using access tokens created using the Intuit SDK, allowing me to access Quickbooks using their API. However, these access tokens expire, so part of my application refresh's them daily. I would like a way to safely store this access token,and update it every time it changes. I will need the "google cloud function" to be able to access this updated key at any moment.
Any tips would be much appreciated. Thankyou!