How do I access my Secrets in a notebook

Hello,

sorry for the confusing, this feature isn’t polished yet.

You can access your attached secrets as environment variables, for example:

import os
#%%
os.environ['key1']
1 Like