netapp_eseries.santricity.netapp_e_syslog 模块 – NetApp E 系列管理 syslog 设置

注意

此模块是 netapp_eseries.santricity 集合 (版本 1.4.1) 的一部分。

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

要安装它,请使用: ansible-galaxy collection install netapp_eseries.santricity

要在 playbook 中使用它,请指定: netapp_eseries.santricity.netapp_e_syslog

netapp_eseries.santricity 2.7.0 中的新增功能

概要

  • 允许为单个 E 系列存储系统配置 syslog 设置。

参数

参数

注释

address

字符串

syslog 服务器的 IPv4 地址或完全限定的域名。

当 *state=absent* 和 *address=None* 时,所有现有的 syslog 配置都将被移除。

api_password

字符串 / 必需

用于向 SANtricity Web Services Proxy 或嵌入式 Web Services API 进行身份验证的密码。

api_url

字符串 / 必需

SANtricity Web Services Proxy 或嵌入式 Web Services API 的 URL。示例 https://prod-1.wahoo.acme.com/devmgr/v2

api_username

字符串 / 必需

用于向 SANtricity Web Services Proxy 或嵌入式 Web Services API 进行身份验证的用户名。

components

列表 / 元素=字符串

E 系列日志组件定义要传输到 syslog 服务器的特定日志。

在撰写本文时,“auditLog”是唯一的日志组件,但将来可能会添加更多组件。

默认值: ["auditLog"]

log_path

字符串

此参数指定用于日志记录的本地路径。

port

整数

这是 syslog 服务器正在使用的端口。

默认值: 514

protocol

字符串

这是 syslog 服务器用于接收 syslog 消息的传输协议。

选项

  • "udp" ← (默认)

  • "tcp"

  • "tls"

ssid

字符串

要管理的阵列的 ID。此值对于每个阵列必须唯一。

默认值: "1"

state

字符串

添加或删除 E 系列存储阵列的 syslog 服务器配置。

当其地址与 *address* 匹配时,现有的 syslog 服务器配置将被删除或更新。

解析为与 *address* 匹配的 IPv4 地址的完全限定域名将不被视为匹配。

选项

  • "present" ← (默认)

  • "absent"

test

布尔值

这会强制将测试 syslog 消息发送到指定的 syslog 服务器。

仅在 *state=present* 时尝试传输。

选项

  • false ← (默认)

  • true

validate_certs

布尔值

是否应验证 https 证书?

选项

  • false

  • true ← (默认)

备注

注意

  • 支持检查模式。

  • 此 API 当前仅支持嵌入式 Web Services API v2.12(与 SANtricity OS 11.40.2 捆绑在一起)及更高版本。

  • E 系列 Ansible 模块需要 Web Services Proxy (WSP) 实例可用以管理存储系统,或者支持嵌入式 Web Services API 的 E 系列存储系统。

  • 嵌入式 Web Services 当前适用于 E2800、E5700、EF570 和更新的硬件型号。

  • netapp_eseries.santricity.netapp_e_storage_system 可用于配置由 WSP 实例管理的系统。

示例

- name: Add two syslog server configurations to NetApp E-Series storage array.
  netapp_e_syslog:
    state: present
    address: "{{ item }}"
    port: 514
    protocol: tcp
    component: "auditLog"
    api_url: "10.1.1.1:8443"
    api_username: "admin"
    api_password: "myPass"
  loop:
    - "192.168.1.1"
    - "192.168.1.100"

返回值

常见的返回值已在 此处 记录,以下是此模块独有的字段

描述

msg

字符串

成功消息

返回:成功时

示例: "设置 更新。"

syslog

布尔值

如果已将 syslog 服务器配置添加到 e 系列存储阵列,则为 True。

返回:成功时

示例: true

作者

  • Nathan Swartz (@ndswartz)