Vagrantfile 300 B

12345678910111213
  1. # -*- mode: ruby -*-
  2. # vi: set ft=ruby :
  3. Vagrant.configure("2") do |config|
  4. config.vm.box = "bento/centos-7.7"
  5. config.vm.provision "ansible" do |ansible|
  6. ansible.playbook = "tests/test.yml"
  7. ansible.become = "true"
  8. ansible.compatibility_mode = "2.0"
  9. end
  10. end