netapp.storagegrid.na_sg_grid_dns 模块 – NetApp StorageGRID 管理网格的外部 DNS 服务器。

注意

此模块是 netapp.storagegrid 集合(版本 21.13.0)的一部分。

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

要安装它,请使用:ansible-galaxy collection install netapp.storagegrid

要在剧本中使用它,请指定:netapp.storagegrid.na_sg_grid_dns

netapp.storagegrid 20.6.0 中的新增功能

概要

  • 更新 NetApp StorageGRID DNS 地址。

参数

参数

注释

api_url

字符串 / 必需

StorageGRID 管理节点 REST API 的 URL。

auth_token

字符串 / 必需

API 请求的授权令牌

dns_servers

列表 / 元素=字符串 / 必需

要更新或删除的逗号分隔的 DNS 地址列表。

state

字符串

指定的 DNS 地址是否应该存在。

所有操作都必需。

选项

  • "present" ← (默认)

validate_certs

布尔值

是否应该验证 https 证书?

选项

  • false

  • true ← (默认)

说明

注意

  • na_sg 为前缀的模块旨在管理 NetApp StorageGRID。

示例

- name: update DNS servers on StorageGRID
  netapp.storagegrid.na_sg_grid_dns:
    api_url: "https://<storagegrid-endpoint-url>"
    auth_token: "storagegrid-auth-token"
    validate_certs: false
    state: present
    dns_servers: "x.x.x.x,xxx.xxx.xxx.xxx"

返回值

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

描述

resp

列表 / 元素=字符串

返回有关已配置 DNS 服务器的信息。

返回:成功

示例: ["8.8.8.8", "8.8.4.4"]

作者

  • NetApp Ansible 团队 (@joshedmonds)