Sha256: 62a4b89b2417789e23b6e80d0fc7dbb4c496d809ef81d4d7fcd8bd63ffe4f505
Contents?: true
Size: 663 Bytes
Versions: 11
Compression:
Stored size: 663 Bytes
Contents
# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure('2') do |config| # Ensure we use our vagrant private key config.ssh.insert_key = false config.ssh.private_key_path = '~/.vagrant.d/insecure_private_key' config.vm.define 'anxs' do |machine| #machine.vm.box = 'centos/7' machine.vm.box = 'ubuntu/trusty64' machine.vm.network :private_network, ip: '192.168.88.22' machine.vm.hostname = 'anxs.local' machine.vm.provision 'ansible' do |ansible| ansible.playbook = 'tests/playbook.yml' ansible.sudo = true ansible.inventory_path = 'vagrant-inventory' ansible.host_key_checking = false end end end
Version data entries
11 entries across 11 versions & 1 rubygems