diff --git a/docs/icinga_hostgroup.rst b/docs/icinga_hostgroup.rst index 01609cd2..261cf4eb 100644 --- a/docs/icinga_hostgroup.rst +++ b/docs/icinga_hostgroup.rst @@ -147,6 +147,18 @@ Examples assign_filter: 'host.name="foohost"' append: true + - name: Update hostgroup using multiple contiditions in assign_filter + telekom_mms.icinga_director.icinga_hostgroup: + state: present + url: "{{ icinga_url }}" + url_username: "{{ icinga_user }}" + url_password: "{{ icinga_pass }}" + object_name: foohostgroup + assign_filter: 'host.vars.something="{{ your_var_here }}"|host.vars.something_else="anything"' + append: true + vars: + your_var_here: foo +