updated to include packages where needed
diff --git a/setup-ec2.yml b/setup-ec2.yml
index 003c323..2db0f00 100644
--- a/setup-ec2.yml
+++ b/setup-ec2.yml
@@ -1,10 +1,17 @@
 ---
-- hosts: control
+- hosts: '{{ hosts }}'
 
   vars:
     ansible_config: ~/.ansible
     
   tasks:
+  - name: Install system packages
+    yum:
+      name: '{{ item }}'
+      state: present
+    with_items:
+    - elasticache-auto-discovery
+
   - name: Create a template .boto config file
     template: 
       src: resources/boto.j2