community.general.manageiq_alert_profiles 模块 – ManageIQ 警报配置文件配置

注意

此模块是 community.general 集合 (版本 10.1.0) 的一部分。

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

要安装它,请使用:ansible-galaxy collection install community.general。您需要其他要求才能使用此模块,请参阅 要求 获取详细信息。

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

概要

  • manageiq_alert_profiles 模块支持在 ManageIQ 中添加、更新和删除警报配置文件。

要求

在执行此模块的主机上需要以下要求。

参数

参数

注释

alerts

列表 / 元素=字符串

要分配到此配置文件的警报描述列表。

如果 state 为“present”,则为必填项

manageiq_connection

字典

ManageIQ 连接配置信息。

ca_cert

别名:ca_bundle_path

字符串

CA 证书包文件或包含证书的目录的路径。

password

字符串

ManageIQ 密码。MIQ_PASSWORD 环境变量(如果已设置)。否则,如果没有传递令牌,则为必填项。

token

字符串

ManageIQ 令牌。MIQ_TOKEN 环境变量(如果已设置)。否则,如果没有传递用户名或密码,则为必填项。

url

字符串

ManageIQ 环境 URL。MIQ_URL 环境变量(如果已设置)。否则,必须传递它。

username

字符串

ManageIQ 用户名。MIQ_USERNAME 环境变量(如果已设置)。否则,如果没有传递令牌,则为必填项。

validate_certs

别名:verify_ssl

布尔值

是否应验证 HTTPS 请求的 SSL 证书。

选项

  • false

  • true ← (默认)

name

字符串

ManageIQ 中唯一的警报配置文件名称。

当 state 为“absent”或“present”时为必填项。

notes

字符串

此配置文件的可选注释

resource_type

字符串

ManageIQ 中警报配置文件的资源类型。当 state 为“present”时为必填项。

选项

  • "Vm"

  • "ContainerNode"

  • "MiqServer"

  • "Host"

  • "Storage"

  • "EmsCluster"

  • "ExtManagementSystem"

  • "MiddlewareServer"

state

字符串

absent - 警报配置文件不应存在,

present - 警报配置文件应存在,

选项

  • "absent"

  • "present" ← (默认)

属性

属性

支持

描述

check_mode

支持:不支持

可以在 check_mode 中运行并返回更改状态预测,而无需修改目标。

diff_mode

支持:不支持

在差异模式下,将返回有关已更改内容(或可能需要在 check_mode 中更改)的详细信息。

示例

- name: Add an alert profile to ManageIQ
  community.general.manageiq_alert_profiles:
    state: present
    name: Test profile
    resource_type: ContainerNode
    alerts:
      - Test Alert 01
      - Test Alert 02
    manageiq_connection:
      url: 'http://127.0.0.1:3000'
      username: 'admin'
      password: 'smartvm'
      validate_certs: false  # only do this when you trust the network!

- name: Delete an alert profile from ManageIQ
  community.general.manageiq_alert_profiles:
    state: absent
    name: Test profile
    manageiq_connection:
      url: 'http://127.0.0.1:3000'
      username: 'admin'
      password: 'smartvm'
      validate_certs: false  # only do this when you trust the network!

作者

  • Elad Alfassa (@elad661)