diff --git a/plugins/filter/from_ini.py b/plugins/filter/from_ini.py index c97455b758..e31c5d7c84 100644 --- a/plugins/filter/from_ini.py +++ b/plugins/filter/from_ini.py @@ -18,6 +18,12 @@ options: description: A string containing an INI document. type: string required: true +seealso: + - plugin: community.general.to_ini + plugin_type: filter + - plugin: ansible.builtin.ini + plugin_type: lookup + - module: community.general.ini_file """ EXAMPLES = r""" diff --git a/plugins/filter/to_ini.py b/plugins/filter/to_ini.py index 319440dd5e..de5545b2f6 100644 --- a/plugins/filter/to_ini.py +++ b/plugins/filter/to_ini.py @@ -18,6 +18,12 @@ options: description: The dictionary that should be converted to the INI format. type: dictionary required: true +seealso: + - plugin: ansible.builtin.ini + plugin_type: lookup + - module: community.general.ini_file + - plugin: community.general.from_ini + plugin_type: filter """ EXAMPLES = r""" diff --git a/plugins/modules/ini_file.py b/plugins/modules/ini_file.py index 24895fd3ae..54398f8fd6 100644 --- a/plugins/modules/ini_file.py +++ b/plugins/modules/ini_file.py @@ -153,6 +153,13 @@ options: notes: - While it is possible to add an O(option) without specifying a O(value), this makes no sense. - As of community.general 3.2.0, UTF-8 BOM markers are discarded when reading files. +seealso: + - plugin: ansible.builtin.ini + plugin_type: lookup + - plugin: community.general.from_ini + plugin_type: filter + - plugin: community.general.to_ini + plugin_type: filter author: - Jan-Piet Mens (@jpmens) - Ales Nosek (@noseka1)