Skip to content

Commit

Permalink
add: Disable sync folder and ssh keys in QACTL Vagrantfile #1723
Browse files Browse the repository at this point in the history
  • Loading branch information
jmv74211 committed Aug 18, 2021
1 parent cdcd25f commit 70467e2
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ Vagrant.configure("2") do |config|
box.each do |vm_name, vm_parameters|
config.vm.define "#{vm_name}" do |node|
node.vm.box = "#{vm_parameters['box_image']}"
config.ssh.insert_key = false
node.vm.synced_folder ".", "/vagrant", disabled: true
node.vm.network :private_network, ip: "#{vm_parameters['private_ip']}"
node.vm.hostname = "#{vm_name}"
node.vm.provider "virtualbox" do |vb|
Expand Down

0 comments on commit 70467e2

Please sign in to comment.