--- - name: Install Redis apt: name: redis state: present - name: Configure redis lineinfile: path: /etc/redis/redis.conf regexp: '^#?{{ item.option }} .*' line: '{{ item.option }} {{ item.value }}' loop: "{{ redis_options }}" notify: Restart redis