Go to file
Franzi 4cbc8dfd77
add LICENSE
2021-07-02 16:45:48 +02:00
.gitignore add .gitignore 2021-04-16 16:16:37 +02:00
LICENSE add LICENSE 2021-07-02 16:45:48 +02:00
README.md add README 2021-07-02 16:44:35 +02:00
bwpass.py add bwpass.attr() to get any other saved attributes 2021-07-02 16:44:46 +02:00
setup.py add bwpass.attr() to get any other saved attributes 2021-07-02 16:44:46 +02:00

README.md

Use secrets from pass in your BundleWrap repo.

Installation

pip install bundlewrap-pass

Setup

There's no setup needed. Please note bundlewrap-pass will override your PASSWORD_STORE_DIR to the content of BW_PASS_DIR, which in turn will default to ~/.password-store. Keep this in mind if you want to use a custom path to your passwordstore repo.

usage

bundlewrap-pass will use the first line of pass output to get its password attribute. You can also retrieve any other saved attributes, as long as your pass entries conform to the format which browserpass uses:

my_super_secure_password
custom_attribute: foo
another_attr: bar

You can then retrieve those attributes using the attr method of bundlewrap-pass.

Example nodes.py:

import bwpass

nodes = {
    'somenode': {
        'metadata': {
            'my_secret': bwpass.password('my_identifier'),
            'my_custom_attr': bwpass.attr('my_identifier', 'custom_attribute'),
        },
    },
}

Note: This will insert a proxy object into your metadata, the actual secret is not retrieved until you convert it to a string (e.g. by inserting it in a template or calling str() explicitly).


© 2021 Franziska Kunsmann