Documentation

    PLEASE NOTE: This document applies to v1.9 version and not to the latest stable release v2.7

    Documentation for other releases can be found by using the version selector in the left bottom 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'