pyventory
pyventory copied to clipboard
Ansible Inventory implementation that uses Python syntax
Bumps [certifi](https://github.com/certifi/python-certifi) from 2022.9.24 to 2022.12.7. Commits 9e9e840 2022.12.07 See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you...
actual ```json "asset_name__var_name": { "type": "list", "default": [ { "foo": "abc", "bar": "xyz" } ] } ``` expected ```json "asset_name__var_name": { "type": "map", "default": [ { "foo": "abc", "bar": "xyz"...
Require explicit control over whether it is allowed to override a var or not. Consider implementing the following options: * default behavior — allows overriding by any asset using multi-inheritance...
- [ ] Use pyventory cli utility to prepare `assets.py` file. - [ ] Configure what exporters are being used. - [ ] Allow custom name for the file. -...
Allow overriding parts of the structures defined using complex dicts structures like the following ```python class MyAsset(Asset): complex_var = dict( key1=dict( sub_key1='sub_value1', sub_key2='sub_value2', ) key2='value2', ) ```