packer.py icon indicating copy to clipboard operation
packer.py copied to clipboard

use python to run hashicorp packer cli commands

Results 3 packer.py issues
Sort by recently updated
recently updated
newest added

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