pyventory icon indicating copy to clipboard operation
pyventory copied to clipboard

Ansible Inventory implementation that uses Python syntax

Results 5 pyventory issues
Sort by recently updated
recently updated
newest added

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 [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=certifi&package-manager=pip&previous-version=2022.9.24&new-version=2022.12.7)](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...

dependencies

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"...

bug
good first issue

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...

enhancement
help wanted

- [ ] Use pyventory cli utility to prepare `assets.py` file. - [ ] Configure what exporters are being used. - [ ] Allow custom name for the file. -...

enhancement
help wanted

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', ) ```

enhancement
proposal