Writing to kubernetes parameter store from nodejs app

6/11/2020

Am I wondering if there is a way to read and write to Kubernetes parameter store from a nodejs app?

I would like to persist/invalidate/refresh an access token and share it across multiple instances during runtime. Can't find any good docs on how to do it exactly.

-- Jacobdo
kubernetes
node.js

1 Answer

6/11/2020

Amazon provides the AWS SDK for node.js, which also includes a class for SecretsManager.

-- Simon
Source: StackOverflow