Skip to content

v1.1.1

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Oct 15:43
· 49 commits to main since this release

Notes:

When using the template attribute the template variables available to you are {{ .BoxName }}, {{ .SyncedFolder }}, and {{.InsertKey}}, which correspond to the Packer options box_name, synced_folder, and insert_key. Alternatively, the template variable {{.DefaultTemplate}} is now available for use if you wish to extend the default generated template.

# Vagrantfile.tpl
{{ .DefaultTemplate }}

Vagrant.configure("2") do |config|
  config.vm.provider "virtualbox" do |vb|
    vb.customize ['modifyvm', :id, '--nested-hw-virt', 'on']
  end
end

What's Changed

Exciting New Features 🎉

  • Expose default vagrantfile template as a template variable {{.DefaultTemplate}} by @dangra in #59

New Contributors

Full Changelog: v1.1.0...v1.1.1