- The base url of your Checkmk server.
+ The base url of your Checkmk server including the protocol.
.. raw:: html
diff --git a/docs/host_lookup.rst b/docs/host_lookup.rst
index 306a3a4dc..20df10c55 100644
--- a/docs/host_lookup.rst
+++ b/docs/host_lookup.rst
@@ -7,7 +7,7 @@
:trim:
.. meta::
- :antsibull-docs: 2.6.1
+ :antsibull-docs: 2.7.0
.. Anchors
@@ -23,7 +23,7 @@ checkmk.general.host lookup -- Get host attributes
.. Collection note
.. note::
- This lookup plugin is part of the `checkmk.general collection
`_ (version 4.2.0).
+ This lookup plugin is part of the `checkmk.general collection
`_ (version 4.3.0).
It is not included in ``ansible-core``.
To check whether it is installed, run :code:`ansible-galaxy collection list`.
@@ -167,7 +167,24 @@ examples: ``lookup('checkmk.general.host', key1=value1, key2=value2, ...)`` and
- automation secret for the REST API access
+ Automation secret for the REST API access.
+
+
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ automation_secret = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_AUTOMATION\_SECRET`
+
+ - Variable: ansible\_lookup\_checkmk\_automation\_secret
.. raw:: html
@@ -204,7 +221,24 @@ examples: ``lookup('checkmk.general.host', key1=value1, key2=value2, ...)`` and
- automation user for the REST API access
+ Automation user for the REST API access.
+
+
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ automation_user = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_AUTOMATION\_USER`
+
+ - Variable: ansible\_lookup\_checkmk\_automation\_user
.. raw:: html
@@ -289,6 +323,23 @@ examples: ``lookup('checkmk.general.host', key1=value1, key2=value2, ...)`` and
URL of the Checkmk server
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ server_url = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_SERVER\_URL`
+
+ - Variable: ansible\_lookup\_checkmk\_server\_url
+
+
.. raw:: html
@@ -323,7 +374,24 @@ examples: ``lookup('checkmk.general.host', key1=value1, key2=value2, ...)`` and
- site name
+ Site name.
+
+
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ site = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_SITE`
+
+ - Variable: ansible\_lookup\_checkmk\_site
.. raw:: html
@@ -360,7 +428,7 @@ examples: ``lookup('checkmk.general.host', key1=value1, key2=value2, ...)`` and
- Wether or not to validate TLS cerificates
+ Whether or not to validate TLS certificates.
.. rst-class:: ansible-option-line
@@ -371,6 +439,23 @@ examples: ``lookup('checkmk.general.host', key1=value1, key2=value2, ...)`` and
- :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)`
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ validate_certs = true
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_VALIDATE\_CERTS`
+
+ - Variable: ansible\_lookup\_checkmk\_validate\_certs
+
+
.. raw:: html
@@ -387,6 +472,10 @@ Notes
.. note::
- When keyword and positional parameters are used together, positional parameters must be listed before keyword parameters:
``lookup('checkmk.general.host', term1, term2, key1=value1, key2=value2)`` and ``query('checkmk.general.host', term1, term2, key1=value1, key2=value2)``
+ - Like all lookups, this runs on the Ansible controller and is unaffected by other keywords such as 'become'. If you need to use different permissions, you must change the command or run Ansible as another user.
+ - Alternatively, you can use a shell/command task that runs against localhost and registers the result.
+ - The directory of the play is used as the current working directory.
+ - It is \ :strong:`NOT`\ possible to assign other variables to the variables mentioned in the \ :literal:`vars`\ section! This is a limitation of Ansible itself.
.. Seealso
@@ -415,6 +504,17 @@ Examples
)
}}"
+ - name: "Use variables outside the module call."
+ ansible.builtin.debug:
+ msg: "Attributes of host example: {{ attributes }}"
+ vars:
+ ansible_lookup_checkmk_server_url: "{{ checkmk_var_server_url }}"
+ ansible_lookup_checkmk_site: "{{ outer_item.site }}"
+ ansible_lookup_checkmk_automation_user: "{{ checkmk_var_automation_user }}"
+ ansible_lookup_checkmk_automation_secret: "{{ checkmk_var_automation_secret }}"
+ ansible_lookup_checkmk_validate_certs: false
+ attributes: "{{ lookup('checkmk.general.host', 'example.com', effective_attributes=True) }}"
+
diff --git a/docs/host_module.rst b/docs/host_module.rst
index c0b8a4510..8e699fcec 100644
--- a/docs/host_module.rst
+++ b/docs/host_module.rst
@@ -7,7 +7,7 @@
:trim:
.. meta::
- :antsibull-docs: 2.6.1
+ :antsibull-docs: 2.7.0
.. Anchors
@@ -23,7 +23,7 @@ checkmk.general.host module -- Manage hosts in Checkmk.
.. Collection note
.. note::
- This module is part of the `checkmk.general collection
`_ (version 4.2.0).
+ This module is part of the `checkmk.general collection
`_ (version 4.3.0).
It is not included in ``ansible-core``.
To check whether it is installed, run :code:`ansible-galaxy collection list`.
@@ -318,7 +318,7 @@ Parameters
- The base url of your Checkmk server.
+ The base url of your Checkmk server including the protocol.
.. raw:: html
diff --git a/docs/hosts_lookup.rst b/docs/hosts_lookup.rst
index cdb4f881c..444d3e617 100644
--- a/docs/hosts_lookup.rst
+++ b/docs/hosts_lookup.rst
@@ -7,7 +7,7 @@
:trim:
.. meta::
- :antsibull-docs: 2.6.1
+ :antsibull-docs: 2.7.0
.. Anchors
@@ -23,7 +23,7 @@ checkmk.general.hosts lookup -- Get various information about a host
.. Collection note
.. note::
- This lookup plugin is part of the `checkmk.general collection
`_ (version 4.2.0).
+ This lookup plugin is part of the `checkmk.general collection
`_ (version 4.3.0).
It is not included in ``ansible-core``.
To check whether it is installed, run :code:`ansible-galaxy collection list`.
@@ -113,7 +113,24 @@ examples: ``lookup('checkmk.general.hosts', key1=value1, key2=value2, ...)`` and
- automation secret for the REST API access
+ Automation secret for the REST API access.
+
+
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ automation_secret = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_AUTOMATION\_SECRET`
+
+ - Variable: ansible\_lookup\_checkmk\_automation\_secret
.. raw:: html
@@ -150,7 +167,24 @@ examples: ``lookup('checkmk.general.hosts', key1=value1, key2=value2, ...)`` and
- automation user for the REST API access
+ Automation user for the REST API access.
+
+
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ automation_user = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_AUTOMATION\_USER`
+
+ - Variable: ansible\_lookup\_checkmk\_automation\_user
.. raw:: html
@@ -235,6 +269,23 @@ examples: ``lookup('checkmk.general.hosts', key1=value1, key2=value2, ...)`` and
URL of the Checkmk server
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ server_url = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_SERVER\_URL`
+
+ - Variable: ansible\_lookup\_checkmk\_server\_url
+
+
.. raw:: html
@@ -269,7 +320,24 @@ examples: ``lookup('checkmk.general.hosts', key1=value1, key2=value2, ...)`` and
- site name
+ Site name.
+
+
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ site = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_SITE`
+
+ - Variable: ansible\_lookup\_checkmk\_site
.. raw:: html
@@ -306,7 +374,7 @@ examples: ``lookup('checkmk.general.hosts', key1=value1, key2=value2, ...)`` and
- Wether or not to validate TLS cerificates
+ Whether or not to validate TLS certificates.
.. rst-class:: ansible-option-line
@@ -317,6 +385,23 @@ examples: ``lookup('checkmk.general.hosts', key1=value1, key2=value2, ...)`` and
- :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)`
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ validate_certs = true
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_VALIDATE\_CERTS`
+
+ - Variable: ansible\_lookup\_checkmk\_validate\_certs
+
+
.. raw:: html
@@ -327,6 +412,14 @@ examples: ``lookup('checkmk.general.hosts', key1=value1, key2=value2, ...)`` and
.. Notes
+Notes
+-----
+
+.. note::
+ - Like all lookups, this runs on the Ansible controller and is unaffected by other keywords such as 'become'. If you need to use different permissions, you must change the command or run Ansible as another user.
+ - Alternatively, you can use a shell/command task that runs against localhost and registers the result.
+ - The directory of the play is used as the current working directory.
+ - It is \ :strong:`NOT`\ possible to assign other variables to the variables mentioned in the \ :literal:`vars`\ section! This is a limitation of Ansible itself.
.. Seealso
@@ -355,6 +448,20 @@ Examples
loop_control:
label: "{{ item.id }}"
+ - name: "Use variables outside the module call."
+ ansible.builtin.debug:
+ msg: "Host: {{ item.id }} in folder {{ item.extensions.folder }}, IP: {{ item.extensions.effective_attributes.ipaddress }}"
+ vars:
+ ansible_lookup_checkmk_server_url: "{{ checkmk_var_server_url }}"
+ ansible_lookup_checkmk_site: "{{ outer_item.site }}"
+ ansible_lookup_checkmk_automation_user: "{{ checkmk_var_automation_user }}"
+ ansible_lookup_checkmk_automation_secret: "{{ checkmk_var_automation_secret }}"
+ ansible_lookup_checkmk_validate_certs: false
+ loop: "{{
+ lookup('checkmk.general.hosts', effective_attributes=True) }}"
+ loop_control:
+ label: "{{ item.id }}"
+
diff --git a/docs/index.rst b/docs/index.rst
index 9e4033ad8..6fa6c5930 100644
--- a/docs/index.rst
+++ b/docs/index.rst
@@ -1,7 +1,7 @@
.. meta::
- :antsibull-docs: 2.6.1
+ :antsibull-docs: 2.7.0
.. _plugins_in_checkmk.general:
@@ -9,7 +9,7 @@
Checkmk.General
===============
-Collection version 4.2.0
+Collection version 4.3.0
.. contents::
:local:
@@ -99,9 +99,9 @@ Lookup Plugins
* :ansplugin:`folders lookup
` -- Get various information about a folder
* :ansplugin:`host lookup ` -- Get host attributes
* :ansplugin:`hosts lookup ` -- Get various information about a host
-* :ansplugin:`rule lookup ` -- Show rule
-* :ansplugin:`rules lookup ` -- List rules
-* :ansplugin:`ruleset lookup ` -- Show ruleset
+* :ansplugin:`rule lookup ` -- Show a rule
+* :ansplugin:`rules lookup ` -- Get a list rules
+* :ansplugin:`ruleset lookup ` -- Show a ruleset
* :ansplugin:`rulesets lookup ` -- Search rulesets
* :ansplugin:`version lookup ` -- Get the version of a Checkmk server
diff --git a/docs/password_module.rst b/docs/password_module.rst
index 3768602a1..e0b8634e0 100644
--- a/docs/password_module.rst
+++ b/docs/password_module.rst
@@ -7,7 +7,7 @@
:trim:
.. meta::
- :antsibull-docs: 2.6.1
+ :antsibull-docs: 2.7.0
.. Anchors
@@ -23,7 +23,7 @@ checkmk.general.password module -- Manage passwords in Checkmk.
.. Collection note
.. note::
- This module is part of the `checkmk.general collection `_ (version 4.2.0).
+ This module is part of the `checkmk.general collection `_ (version 4.3.0).
It is not included in ``ansible-core``.
To check whether it is installed, run :code:`ansible-galaxy collection list`.
@@ -378,7 +378,7 @@ Parameters
- The base url of your Checkmk server.
+ The base url of your Checkmk server including the protocol.
.. raw:: html
diff --git a/docs/rule_lookup.rst b/docs/rule_lookup.rst
index 9c3651195..b32c830f7 100644
--- a/docs/rule_lookup.rst
+++ b/docs/rule_lookup.rst
@@ -7,7 +7,7 @@
:trim:
.. meta::
- :antsibull-docs: 2.6.1
+ :antsibull-docs: 2.7.0
.. Anchors
@@ -17,13 +17,13 @@
.. Title
-checkmk.general.rule lookup -- Show rule
-++++++++++++++++++++++++++++++++++++++++
+checkmk.general.rule lookup -- Show a rule
+++++++++++++++++++++++++++++++++++++++++++
.. Collection note
.. note::
- This lookup plugin is part of the `checkmk.general collection `_ (version 4.2.0).
+ This lookup plugin is part of the `checkmk.general collection `_ (version 4.3.0).
It is not included in ``ansible-core``.
To check whether it is installed, run :code:`ansible-galaxy collection list`.
@@ -115,6 +115,23 @@ examples: ``lookup('checkmk.general.rule', key1=value1, key2=value2, ...)`` and
Automation secret for the REST API access.
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ automation_secret = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_AUTOMATION\_SECRET`
+
+ - Variable: ansible\_lookup\_checkmk\_automation\_secret
+
+
.. raw:: html
@@ -152,6 +169,23 @@ examples: ``lookup('checkmk.general.rule', key1=value1, key2=value2, ...)`` and
Automation user for the REST API access.
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ automation_user = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_AUTOMATION\_USER`
+
+ - Variable: ansible\_lookup\_checkmk\_automation\_user
+
+
.. raw:: html
@@ -226,6 +260,23 @@ examples: ``lookup('checkmk.general.rule', key1=value1, key2=value2, ...)`` and
URL of the Checkmk server.
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ server_url = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_SERVER\_URL`
+
+ - Variable: ansible\_lookup\_checkmk\_server\_url
+
+
.. raw:: html
@@ -263,6 +314,23 @@ examples: ``lookup('checkmk.general.rule', key1=value1, key2=value2, ...)`` and
Site name.
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ site = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_SITE`
+
+ - Variable: ansible\_lookup\_checkmk\_site
+
+
.. raw:: html
@@ -297,7 +365,7 @@ examples: ``lookup('checkmk.general.rule', key1=value1, key2=value2, ...)`` and
- Whether or not to validate TLS cerificates.
+ Whether or not to validate TLS certificates.
.. rst-class:: ansible-option-line
@@ -308,6 +376,23 @@ examples: ``lookup('checkmk.general.rule', key1=value1, key2=value2, ...)`` and
- :ansible-option-choices-entry-default:`true` :ansible-option-choices-default-mark:`← (default)`
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ validate_certs = true
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_VALIDATE\_CERTS`
+
+ - Variable: ansible\_lookup\_checkmk\_validate\_certs
+
+
.. raw:: html
@@ -318,6 +403,14 @@ examples: ``lookup('checkmk.general.rule', key1=value1, key2=value2, ...)`` and
.. Notes
+Notes
+-----
+
+.. note::
+ - Like all lookups, this runs on the Ansible controller and is unaffected by other keywords such as 'become'. If you need to use different permissions, you must change the command or run Ansible as another user.
+ - Alternatively, you can use a shell/command task that runs against localhost and registers the result.
+ - The directory of the play is used as the current working directory.
+ - It is \ :strong:`NOT`\ possible to assign other variables to the variables mentioned in the \ :literal:`vars`\ section! This is a limitation of Ansible itself.
.. Seealso
@@ -345,6 +438,17 @@ Examples
)
}}"
+ - name: "Use variables outside the module call."
+ ansible.builtin.debug:
+ msg: "Rule: {{ extensions }}"
+ vars:
+ ansible_lookup_checkmk_server_url: "{{ checkmk_var_server_url }}"
+ ansible_lookup_checkmk_site: "{{ outer_item.site }}"
+ ansible_lookup_checkmk_automation_user: "{{ checkmk_var_automation_user }}"
+ ansible_lookup_checkmk_automation_secret: "{{ checkmk_var_automation_secret }}"
+ ansible_lookup_checkmk_validate_certs: false
+ attributes: "{{ lookup('checkmk.general.rule', rule_id='a9285bc1-dcaf-45e0-a3ba-ad398ef06a49') }}"
+
diff --git a/docs/rule_module.rst b/docs/rule_module.rst
index bd973c7bd..9fa3ca7e2 100644
--- a/docs/rule_module.rst
+++ b/docs/rule_module.rst
@@ -7,7 +7,7 @@
:trim:
.. meta::
- :antsibull-docs: 2.6.1
+ :antsibull-docs: 2.7.0
.. Anchors
@@ -23,7 +23,7 @@ checkmk.general.rule module -- Manage rules in Checkmk.
.. Collection note
.. note::
- This module is part of the `checkmk.general collection
`_ (version 4.2.0).
+ This module is part of the `checkmk.general collection
`_ (version 4.3.0).
It is not included in ``ansible-core``.
To check whether it is installed, run :code:`ansible-galaxy collection list`.
@@ -461,6 +461,50 @@ Parameters
Properties of the rule.
+ .. raw:: html
+
+
+
+ * - .. raw:: html
+
+
+
+
+ .. raw:: latex
+
+ \hspace{0.02\textwidth}\begin{minipage}[t]{0.3\textwidth}
+
+ .. _ansible_collections.checkmk.general.rule_module__parameter-rule/rule_id:
+
+ .. rst-class:: ansible-option-title
+
+ **rule_id**
+
+ .. raw:: html
+
+
+
+ .. ansible-option-type-line::
+
+ :ansible-option-type:`string`
+
+ .. raw:: html
+
+
+
+ .. raw:: latex
+
+ \end{minipage}
+
+ - .. raw:: html
+
+
+
+ If given, it will be \ :literal:`the only condition`\ to identify the rule to work on.
+
+ When there's no rule found with this id, the task will fail.
+
+
.. raw:: html
@@ -569,7 +613,7 @@ Parameters
- The base url of your Checkmk server.
+ The base url of your Checkmk server including the protocol.
.. raw:: html
diff --git a/docs/rules_lookup.rst b/docs/rules_lookup.rst
index 65409420e..285e5b5dc 100644
--- a/docs/rules_lookup.rst
+++ b/docs/rules_lookup.rst
@@ -7,7 +7,7 @@
:trim:
.. meta::
- :antsibull-docs: 2.6.1
+ :antsibull-docs: 2.7.0
.. Anchors
@@ -17,13 +17,13 @@
.. Title
-checkmk.general.rules lookup -- List rules
-++++++++++++++++++++++++++++++++++++++++++
+checkmk.general.rules lookup -- Get a list rules
+++++++++++++++++++++++++++++++++++++++++++++++++
.. Collection note
.. note::
- This lookup plugin is part of the `checkmk.general collection `_ (version 4.2.0).
+ This lookup plugin is part of the `checkmk.general collection `_ (version 4.3.0).
It is not included in ``ansible-core``.
To check whether it is installed, run :code:`ansible-galaxy collection list`.
@@ -115,6 +115,23 @@ examples: ``lookup('checkmk.general.rules', key1=value1, key2=value2, ...)`` and
Automation secret for the REST API access.
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ automation_secret = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_AUTOMATION\_SECRET`
+
+ - Variable: ansible\_lookup\_checkmk\_automation\_secret
+
+
.. raw:: html
@@ -152,6 +169,23 @@ examples: ``lookup('checkmk.general.rules', key1=value1, key2=value2, ...)`` and
Automation user for the REST API access.
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ automation_user = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_AUTOMATION\_USER`
+
+ - Variable: ansible\_lookup\_checkmk\_automation\_user
+
+
.. raw:: html
@@ -308,6 +342,23 @@ examples: ``lookup('checkmk.general.rules', key1=value1, key2=value2, ...)`` and
URL of the Checkmk server.
+ .. rst-class:: ansible-option-line
+
+ :ansible-option-configuration:`Configuration:`
+
+ - INI entry:
+
+ .. code-block::
+
+ [checkmk_lookup]
+ server_url = VALUE
+
+
+ - Environment variable: :envvar:`ANSIBLE\_LOOKUP\_CHECKMK\_SERVER\_URL`
+
+ - Variable: ansible\_lookup\_checkmk\_server\_url
+
+
.. raw:: html