packer.py
packer.py copied to clipboard
use python to run hashicorp packer cli commands
### packer.py version 0.3.0 ### Expected behavior Hidden password ### Actual behavior When you run p.build command with the password argument, everyone can see the password in the process status...
Currently, you can't see the output of packer.py unless it finishes its job. Is there any way to stream it in real-time to console?
currently commands simply pass through output from packer commands as a tuple. ``` (ret, out, err) = p.version() ``` I want to be able to parse in format that allows...