purestorage.flasharray.purefa_sso 模块 – 配置 Pure Storage FlashArray 单点登录

注意

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

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

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

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

purestorage.flasharray 1.9.0 中的新增功能

已弃用

在以下版本中移除:

版本 2.0.0

原因:

已被 purestorage.flasharray.purefa_admin 取代

替代方案:

使用 purestorage.flasharray.purefa_admin 代替。

概要

  • 启用或禁用单点登录 (SSO),以使 LDAP 用户能够通过单次登录从 Pure1 Manage 无缝导航到当前阵列。

需求

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

  • 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 地址或主机名。

state

字符串

启用或禁用来自 Pure1 Manage 的阵列单点登录

选项

  • "present" ← (默认)

  • "absent"

备注

注意

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

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

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

示例

- name: Enable SSO
  purestorage.flasharray.purefa_sso:
    state: present
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

- name: Disable SSO
  purestorage.flasharray.purefa_sso:
    state: absent
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

状态

  • 此模块将在 2.0.0 版本中删除。[已弃用]

  • 更多信息请参见 已弃用

作者

  • Pure Storage Ansible 团队 (@sdodsley)