I have a number of variables that can be populated from bash queries on execution. I'm struggling to find a way to make this a reality.
Essentially, I'm trying to accomplish this:
{
"variables": {
"ssh_name": "root",
"ssh_pass": "password123",
"server_version": "grep product.version= ../product.properties | sed 's:product.version=::'"
},
"builders": [
{
"type": "virtualbox-iso",
I've tried several iterations of this, but I can't seem to find a working substitution call.