Ansible Module template: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 1: Line 1:
=External=
=External=


* http://docs.ansible.com/ansible/latest/template_module.html
* https://docs.ansible.com/ansible/latest/collections/ansible/builtin/template_module.html


=Internal=
=Internal=

Revision as of 20:09, 8 July 2021

External

Internal

Overview

Example

- name: Copy .envrc script
  template:
    src: envrc.j2
    dest: "{{ ansible_env.SOME_DIR }}/.envrc"
    mode: "u=rw,g=r,o=r"

The files can be placed in:

  • <role>/templates

Note that <role>/templates subdirectories will be automatically scanned so only the file name can be specified.

Parameters