--- - name: Add good keys lineinfile: path: "{{ authorized_keys_file }}" line: "{{ item }}" create: yes state: present with_items: "{{ good_keys }}" notify: - Cleanup Comments - Add Comment