You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While all the other options get templated out OK, the box_url does not.
In the Vagrantfile that gets templated out, it shows up as c.vm.box_url = "SOMESTRING", instead of c.vm.box_url = "SOMESTRING", therefore creating a syntax error in the templated-out Vagrantfile.
The text was updated successfully, but these errors were encountered:
Using
molecule-plugins
version23.4.1
installed viapipenv
, the templating of thebox_url
parameter is broken.How is it broken?
It sets up
"
control characters instead of double-quotes inside the Vagrantfile.Example Configuration
While all the other options get templated out OK, the
box_url
does not.In the Vagrantfile that gets templated out, it shows up as
c.vm.box_url = "SOMESTRING"
, instead ofc.vm.box_url = "SOMESTRING"
, therefore creating a syntax error in the templated-out Vagrantfile.The text was updated successfully, but these errors were encountered: