purestorage.flasharray.purefa_snmp 模块 – 配置 FlashArray SNMP 管理器

注意

此模块是 purestorage.flasharray 集合 (版本 1.32.0) 的一部分。

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

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

要在剧本中使用它,请指定: purestorage.flasharray.purefa_snmp

purestorage.flasharray 1.0.0 中的新增功能

概要

  • 管理 Pure Storage FlashArray 上的 SNMP 管理器。

  • 不支持更改命名 SNMP 管理器的版本。

  • 此模块不是幂等的,并且由于无法与播放参数进行比较的隐藏参数,它将始终修改现有的 SNMP 管理器。

需求

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

  • python >= 3.3

  • purestorage >= 1.19

  • py-pure-client >= 1.26.0

  • netaddr

  • requests

  • pycountry

  • urllib3

参数

参数

注释

api_token

字符串

具有管理员权限用户的 FlashArray API 令牌。

auth_passphrase

字符串

仅限 SNMPv3。8-32 个字符的密码。

auth_protocol

字符串

仅限 SNMP v3。要使用的哈希算法

选项

  • "MD5"

  • "SHA"

community

字符串

仅限 SNMP v2c。管理器社区 ID。长度为 1 到 32 个字符。

disable_warnings

布尔值

在 purestorage.flasharray 1.29.0 中添加

禁用调试日志中的不安全证书警告

选项

  • false ← (默认)

  • true

fa_url

字符串

FlashArray 管理 IPv4 地址或主机名。

host

字符串

要向其发送陷阱消息的 IPv4 或 IPv6 地址或 FQDN。

name

字符串 / 必需

SNMP 管理器的名称

notification

字符串

对事件执行的操作。

选项

  • "inform"

  • "trap" ← (默认)

privacy_passphrase

字符串

仅限 SNMPv3。用于加密 SNMP 消息的密码。必须是 8 到 63 个非空格 ASCII 字符。

privacy_protocol

字符串

仅限 SNMP v3。要使用的加密协议

选项

  • "AES"

  • "DES"

state

字符串

创建、删除或测试 SNMP 管理器

选项

  • "absent"

  • "present" ← (默认)

  • "test"

user

字符串

仅限 SNMP v3。指定 SNMP 管理器识别的用户 ID。必须是 1 到 32 个字符。

version

字符串

要用于管理器的 SNMP 协议版本。

选项

  • "v2c" ← (默认)

  • "v3"

备注

注意

  • 此模块需要 purestoragepy-pure-client Python 库

  • 特定模块可能需要其他 Python 库。

  • 如果未将 *fa_url* 和 *api_token* 参数直接传递到模块,则必须设置 PUREFA_URLPUREFA_API 环境变量

示例

- name: Delete exisitng SNMP manager
  purestorage.flasharray.purefa_snmp:
    name: manager1
    state: absent
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Create v2c SNMP manager
  puretorage.flasharray.purefa_snmp:
    name: manager1
    community: public
    host: 10.21.22.23
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Create v3 SNMP manager
  puretorage.flasharray.purefa_snmp:
    name: manager2
    version: v3
    user: manager
    auth_protocol: MD5
    auth_passphrase: password
    host: 10.21.22.23
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Update existing SNMP manager
  purestorage.flasharray.purefa_snmp:
    name: manager1
    community: private
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

作者

  • Pure Storage Ansible 团队 (@sdodsley)