CORD-2407 MME playbook

Change-Id: Ifce2c1cc225d7469827f5da509b84957a45457e1
diff --git a/xos/synchronizer/steps/roles/sprint_mme_setup/tasks/main.yml b/xos/synchronizer/steps/roles/sprint_mme_setup/tasks/main.yml
new file mode 100644
index 0000000..d5548fe
--- /dev/null
+++ b/xos/synchronizer/steps/roles/sprint_mme_setup/tasks/main.yml
@@ -0,0 +1,18 @@
+---
+- name: Copy templates
+  template:
+    src: "templates/{{ item }}.j2"
+    dest: "{{ source_path }}/{{ item }}"
+  with_items:
+    - vbfd.conf
+    - vbsm_cfg.txt
+
+- name: Run make_certs.sh command
+  shell: "./make_certs.sh mme {{ realm }}"
+  args:
+    chdir: "{{ source_path }}"
+
+- name: Run vb_acc
+  shell: "./vb_acc"
+  args:
+    chdir: "{{ source_path }}"