Vagrant-Ansible scripts for tutorial vm

Change-Id: I0481fa9c7df897812a765973440b6b1b2bf669f8
diff --git a/tools/dev/vagrant/ansible/basic.yml b/tools/dev/vagrant/ansible/basic.yml
new file mode 100644
index 0000000..9308a0d
--- /dev/null
+++ b/tools/dev/vagrant/ansible/basic.yml
@@ -0,0 +1,14 @@
+---
+#
+# Installs a clean dev environment. Hostnames, bride, some utils
+#
+- name: Include vars
+  hosts: localhost
+  tasks:
+  - include_vars: vars/global_vars.yml
+
+- hosts: localhost
+  remote_user: vagrant
+  serial: 1
+  roles:
+    - common
\ No newline at end of file