Stéphan Taljaard
06/17/2021, 9:27 AMshared_credentials
with contents {"sendgrid-api-key": "abc", "some-other-api-key": "efg", ...}
,
Is there a way to read the sendgrid-api-key
value from shared_credentials
, then create a temporary secret in the flow named SENDGRID_API_KEY
, as required by the SendGrid task?
Or other ideas to use the value inside of the secret?Stéphan Taljaard
06/17/2021, 10:04 AMStéphan Taljaard
06/17/2021, 11:46 AMKevin Kho
Kevin Kho
client.set_secret(name="MYSECRET", value="MY SECRET VALUE")
one you pull it out from shared_credentials
. This really isn’t temporary though.