template

Collection: builtin

Full Name: parallax.builtin.template

Aliases: ansible.builtin.template, template

Synopsis

Manage template

Parameters

NameTypeRequiredDefaultDescription
srcstringyesLocal template file
deststringyesRemote path to render template
varsmap[string]anymap[]Variables for the template

Example

- name: Example template task
  template:
    src: <your_src>
    dest: <your_dest>