community.general.from_ini 过滤器 – 将 INI 文本输入转换为字典

注意

此过滤器插件是 community.general 集合 (版本 10.1.0) 的一部分。

如果您使用的是 ansible 软件包,则可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install community.general

要在 playbook 中使用它,请指定:community.general.from_ini

community.general 8.2.0 中的新增功能

概要

  • 将 INI 文本输入转换为字典。

输入

这描述了过滤器的输入,即 | community.general.from_ini 之前的 value。

参数

注释

输入

字符串 / 必需

包含 INI 文档的字符串。

示例

- name: Slurp an INI file
  ansible.builtin.slurp:
    src: /etc/rhsm/rhsm.conf
  register: rhsm_conf

- name: Display the INI file as dictionary
  ansible.builtin.debug:
    var: rhsm_conf.content | b64decode | community.general.from_ini

- name: Set a new dictionary fact with the contents of the INI file
  ansible.builtin.set_fact:
    rhsm_dict: >-
      {{
          rhsm_conf.content | b64decode | community.general.from_ini
      }}

返回值

描述

返回值

字典

表示 INI 文件的字典。

返回:成功

作者

  • Steffen Scheib (@sscheib)

提示

每个条目类型的配置条目具有从低到高的优先级顺序。例如,列表中较低的变量将覆盖较高的变量。