Class: Ansible::Ruby::Modules::Win_template
- Inherits:
-
Base
- Object
- Ansible::Ruby::Models::Base
- Base
- Ansible::Ruby::Modules::Win_template
- Defined in:
- lib/ansible/ruby/modules/generated/core/windows/win_template.rb
Overview
Templates are processed by the Jinja2 templating language (U(jinja.pocoo.org/docs/)) - documentation on the template formatting can be found in the Template Designer Documentation (U(jinja.pocoo.org/docs/templates/)). Six additional variables can be used in templates: C(ansible_managed) (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 the template’s machine, C(template_uid) the owner, C(template_path) the absolute path of the template, C(template_fullpath) is the absolute path of the 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 result in the template being marked ‘changed’ each time.
Instance Method Summary collapse
-
#dest ⇒ String
Location to render the template to on the remote machine.
-
#src ⇒ String
Path of a Jinja2 formatted template on the local server.
Methods inherited from Base
Methods inherited from Ansible::Ruby::Models::Base
attr_option, attr_options, attribute, #initialize, remove_existing_validations, #to_h, validates
Constructor Details
This class inherits a constructor from Ansible::Ruby::Models::Base
Instance Method Details
#dest ⇒ String
Returns Location to render the template to on the remote machine.
16 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_template.rb', line 16 attribute :dest |
#src ⇒ String
Returns Path of a Jinja2 formatted template on the local server. This can be a relative or absolute path.
12 |
# File 'lib/ansible/ruby/modules/generated/core/windows/win_template.rb', line 12 attribute :src |