Ansible Module template: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 22: Line 22:


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

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