--- - name: add repository key copy: src: nodesource.gpg dest: /etc/apt/trusted.gpg.d/nodejs.gpg notify: update apt cache - name: add repository entry copy: content: | deb https://deb.nodesource.com/node_10.x {{ ansible_distribution_release }} main dest: /etc/apt/sources.list.d/nodejs.list notify: update apt cache - name: update apt cache meta: flush_handlers - name: install nodejs apt: name: nodejs state: present