added group variables for sites
diff --git a/aztest-playbook.yml b/aztest-playbook.yml
new file mode 100644
index 0000000..837c14a
--- /dev/null
+++ b/aztest-playbook.yml
@@ -0,0 +1,23 @@
+---
+# aztest playbook, for installing OpenCloud
+
+# Prepare the head node and install juju
+- hosts: head
+  roles:
+    - { role: common-prep, become: yes }
+    - { role: head-prep, become: yes }
+    - juju-user-prep
+    - juju-setup
+
+# prepare the compute nodes
+- hosts: compute
+  become: yes
+  roles:
+    - { role: common-prep, become: yes }
+    - { role: compute-prep, become: yes }
+
+# Finish the openstack config on head (needs compute nodes up to finish)
+- hosts: head
+  roles:
+    - juju-openstack-config
+