Secret Manager API workflow
Secret Manager exposes a REST API and a gRPC API for using and managing secrets directly or in your applications.
Last updated
Secret Manager exposes a REST API and a gRPC API for using and managing secrets directly or in your applications.
Last updated
Ref:
Key requirements
Create a project in the Google Cloud account
Verify/enable billing for the project
Enable Secrete Manager API for the project
Install Google Cloud Cli
Initialize Google Cloud Cli
Run the following command to make sure the secret manager package is available in your project:
npm install @google-cloud/secret-manager
Update the functions package.json
with the new dependency.
File: apps\{{project}}\src\package.json
Create the file get-secret-value.ts
in the utils
folder:
apps\{{project}}\src\utils\get-secret-value.ts
Add the following code:
The following example updates the onGetBalance
Web3 function example.
Update apps\{{project}}\src\functions\moralis\index.ts
to the following:
This above function is now ready to build
and deploy
with secure access to the secret.
Ref:
Ref:
Ref: