template 2.9 KB
Newer Older
1
# this is a virtual module that is entirely implemented server side
2 3 4 5

DOCUMENTATION = '''
---
module: template
6
version_added: historical
7 8 9 10 11 12
short_description: Templates a file out to a remote server.
description:
     - Templates are processed by the Jinja2 templating language
       (U(http://jinja.pocoo.org/docs/)) - documentation on the template
       formatting can be found in the Template Designer Documentation
       (U(http://jinja.pocoo.org/docs/templates/)).
13
     - "Six additional variables can be used in templates: C(ansible_managed) 
14 15 16
       (configurable via the C(defaults) section of C(ansible.cfg)) contains a string
       which can be used to describe the template name, host, modification time of the
       template file and the owner uid, C(template_host) contains the node name of 
17
       the template's machine, C(template_uid) the owner, C(template_path) the
18
       absolute path of the template, C(template_fullpath) is the absolute path of the 
19 20 21
       template, and C(template_run_date) is the date that the template was rendered. Note that including
       a string that uses a date in the template will resort in the template being marked 'changed'
       each time."
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
options:
  src:
    description:
      - Path of a Jinja2 formatted template on the local server. This can be a relative or absolute path.
    required: true
    default: null
    aliases: []
  dest:
    description:
      - Location to render the template to on the remote machine.
    required: true
    default: null
  backup:
    description:
      - Create a backup file including the timestamp information so you can get
        the original file back if you somehow clobbered it incorrectly.
    required: false
    choices: [ "yes", "no" ]
    default: "no"
41 42 43 44 45 46
  validate:
    description:
      - validation to run before copying into place
    required: false
    default: ""
    version_added: "1.2"
47 48
  others:
    description:
49
      - all arguments accepted by the M(file) module also work here, as well as the M(copy) module (except the the 'content' parameter).
50
    required: false
51
notes:
52
  - "Since Ansible version 0.9, templates are loaded with C(trim_blocks=True)."
53 54 55

  - "Also, you can override jinja2 settings by adding a special header to template file.
  i.e. C(#jinja2:variable_start_string:'[%' , variable_end_string:'%]')
56
  which changes the variable interpolation markers to  [% var %] instead of  {{ var }}. This is the best way to prevent evaluation of things that look like, but should not be Jinja2.  raw/endraw in Jinja2 will not work as you expect because templates in Ansible are recursively evaluated."
57

58
requirements: []
59 60
author: Michael DeHaan
'''
61 62 63 64 65 66

EXAMPLES = '''
# Example from Ansible Playbooks
- template: src=/mytemplates/foo.j2 dest=/etc/file.conf owner=bin group=wheel mode=0644

# Copy a new "sudoers file into place, after passing validation with visudo
67
- action: template src=/mine/sudoers dest=/etc/sudoers validate='visudo -cf %s'
68
'''