purestorage.flasharray.purefa_smtp 模块 – 配置 FlashArray SMTP 设置

注意

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

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

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

要在 playbook 中使用它,请指定: purestorage.flasharray.purefa_smtp

purestorage.flasharray 1.0.0 中的新功能

概要

  • 设置或清除 SMTP 设置的配置。

  • 如果设置了用户名/密码,这将始终强制更改,因为无法查看密码是否与当前的 SMTP 配置不同。

  • Pure Storage Ansible 团队 (@sdodsley) <pure-ansible-team@purestorage.com>

要求

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

  • python >= 3.3

  • purestorage >= 1.19

  • py-pure-client >= 1.26.0

  • netaddr

  • requests

  • pycountry

  • urllib3

参数

参数

注释

api_token

字符串

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

disable_warnings

布尔值

在 purestorage.flasharray 1.29.0 中添加

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

选项

  • false ← (默认)

  • true

fa_url

字符串

FlashArray 管理 IPv4 地址或主机名。

password

字符串

SMTP 密码。

relay_host

字符串

IPv4 或 IPv6 地址或 FQDN。可以附加端口号。

sender_domain

字符串

域名。

state

字符串

设置或删除 SMTP 配置

选项

  • "absent"

  • "present" ← (默认)

user

字符串

SMTP 用户名。

备注

注意

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

  • 特定模块可能需要额外的 Python 库。

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

示例

- name: Delete exisitng SMTP settings
  purestorage.flasharray.purefa_smtp:
    state: absent
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Set SMTP settings
  purestorage.flasharray.purefa_smtp:
    sender_domain: purestorage.com
    password: account_password
    user: smtp_account
    relay_host: 10.2.56.78:2345
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

作者

  • Pure Storage ansible 团队 (@sdodsley)