Sha256: a2ce5095f3be80d3dc4523f40463ff972288f5cf2c7c02e688dc3093d1be092f

Contents?: true

Size: 657 Bytes

Versions: 4

Compression:

Stored size: 657 Bytes

Contents

# frozen_string_literal: true

Vagrant.configure('2') do |config|
  # Choose base box
  config.vm.box = 'bento/ubuntu-18.04'

  config.vm.provider 'virtualbox' do |vb|
    # Prevent clock skew when host goes to sleep while VM is running
    vb.customize ['guestproperty', 'set', :id, '/VirtualBox/GuestAdd/VBoxService/--timesync-set-threshold', 10_000]

    vb.cpus = 2
    vb.memory = 2048
  end

  # Defaults
  config.vm.provision :salt do |salt|
    salt.masterless = true
    salt.minion_config = '.dev/vagrant/minion'

    # Pillars
    salt.pillar(
      'ruby' => {
        'version' => '2.6.2'
      }
    )

    salt.run_highstate = true
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dynamoid-3.4.1 Vagrantfile
dynamoid-3.4.0 Vagrantfile
dynamoid-3.3.0 Vagrantfile
dynamoid-3.2.0 Vagrantfile