This is the way I actually work.
My question is, how to do give those properties values on-the-fly, with no need no re-upload the whole box to vCloud Director.
Ovftool is able to do that (i.e. ovftool --prop:currency="EUR - Euro".....).
I wonder if this is possible using Vagrant too.
i saw some examples in the internet, adding some code to a configuration file:
But its for virtualbox provider for already defined parameters (natdnshostresolver1).
config.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
end
I wold like to see somethig lke
config.vm.customize ["modifyvm", :id, "itfm_currency", "EUR - Euro"]