Documentation

    PLEASE NOTE: This document applies to an unreleased version of rash. It is strongly recommended that you only use official releases of rash, as unreleased versions are subject to changes and incompatibilities that will not be supported in the official releases.

    If you are using an official release version of Rash, you should refer to the documentation for your specific version.

    Documentation for other releases can be found by using the version selector in the bottom left of any doc page.

    set_vars

    This module allows setting new variables.

    Attributes

    check_mode:
      support: always
    

    Parameters

    Parameter Required Type Values Description
    key_value true map   This module takes key/value pairs and save un current Vars context.

    Example

    - set_vars:
        foo: boo
        buu:
          - 1
          - 2
          - 3
        zoo:
          suu: yea
    
    - assert:
        that:
          - foo == 'boo'
          - buu[2] == 3
          - zoo.suu == 'yea'