https://github.com/instruct-br/nameko-vault
https://github.com/instruct-br/nameko-vault
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/instruct-br/nameko-vault
- Owner: instruct-br
- License: mit
- Created: 2020-05-13T13:32:46.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-04T11:35:57.000Z (almost 3 years ago)
- Last Synced: 2025-09-28T17:38:26.618Z (9 months ago)
- Language: Python
- Size: 31.3 KB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nameko-vault
Extension for [Nameko](https://www.nameko.io/) that integrates with
[Vault](https://www.vaultproject.io/).
To use this tool it is necessary to configure the following parameters in your
nameko config.yml file:
```
VAULT_URL:
VAULT_TOKEN:
```
## Usage
To use the tool it's needed inform the mount point of the path in which you want
to obtain any secrets. This mount point can be informed when instantiating the
provider or passing this information directly to the method being used.
### Example 1:
```python
# path: example/path/secret
vault = VaultProvider(mount_point="example")
vault.get_kv_secret(path="path/secret")
```
### Example 2:
```python
# path: example/path/secret
vault = VaultProvider()
vault.get_kv_secret(mount_point="example", path="path/secret")
```
## List Secrets
The method `get_kv_secrets_list` returns a list of secrets contained in a given
path
```python
vault = VaultProvider()
vault.get_kv_secrets_list(mount_point="example", path="path")
```
```
['path/test1', 'path/test2']
```
## Get KV Secret Data
The method `get_kv_secret` returns the content cotained in a given path
```python
vault = VaultProvider()
vault.get_kv_secret(mount_point="example", path="path/test")
```
```
[
{
"data":{
"pass":"test",
"user":"sample"
},
"metadata":{
"created_time":"2020-07-01T17:44:48.054175763Z",
"deletion_time":"",
"destroyed":False,
"version":1
}
}
]
```
## Create or Update KV Secret
Method to create an secret or update an existing one in a given path.
```python
vault = VaultProvider()
secret = {"example": "Test", "number": 42}
vault.create_or_update_kv_secret(mount_point="example", path="path/test", secret=secret)
```
```
{
'request_id': '4ce62ee7-0f88-3efc-d745-5e2fbc423789',
'lease_id': '',
'renewable': False,
'lease_duration': 0,
'data': {
'created_time': '2020-09-10T00:25:40.92411625Z',
'deletion_time': '',
'destroyed': False,
'version': 1
},
'wrap_info': None,
'warnings': None,
'auth': None
}
```
## Patch KV Secret
Method to update an existing path. Either to add a new key/value to the secret and/or update the value for an existing key. Raises an `hvac.exceptions.InvalidRequest` if the path hasn’t been written to previously.
```python
vault = VaultProvider()
secret = {"example": "New Test"}
vault.patch_kv_secret(mount_point="example", path="path/test", secret=secret)
```
```
{
'request_id': '7bf2a869-dc66-efa2-3679-814ef76fb447',
'lease_id': '',
'renewable': False,
'lease_duration': 0,
'data': {
'created_time': '2020-09-10T00:31:32.6783082Z',
'deletion_time': '',
'destroyed': False,
'version': 2
},
'wrap_info': None,
'warnings': None,
'auth': None
}
```
## Delete KV Secret (metadata and all versions)
Method to delete an existing path with all his versions and metadata on a given path.
```python
vault = VaultProvider()
path = "path/secret"
vault.delete_metadata_and_all_versions_kv_secret(path)
```