Changing the ansible provisioner is done on line [30-36](Vagrantfile#L30-L36):
```ruby
config.vm.provision "ansible" do |ansible|
ansible.compatibility_mode = "2.0"
ansible.playbook = "ansible/playbook.yml"
ansible.inventory_path = "ansible/inventory"
ansible.become = true
end
```
The `ansible/playbook.yml` references a role, which can be found in `ansible/roles/` and the tasks being actioned is within the tasks directory `ansible/roles/website/tasks/main.yml`.
For a simple playbook without roles, you can reference `ansible/playbook-no-roles.yml`