infoblox.nios_modules.nios_srv_record 模块 – 配置 Infoblox NIOS SRV 记录

注意

此模块是 infoblox.nios_modules 集合 (版本 1.7.1) 的一部分。

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

要安装它,请使用:ansible-galaxy collection install infoblox.nios_modules。您需要其他要求才能使用此模块,请参阅 需求了解详情。

要在 playbook 中使用它,请指定:infoblox.nios_modules.nios_srv_record

infoblox.nios_modules 1.0.0 中的新增功能

概要

  • 添加和/或删除 Infoblox NIOS 服务器上的 SRV 记录对象的实例。此模块使用 Infoblox WAPI 接口通过 REST 管理 NIOS record:srv 对象。

需求

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

  • infoblox-client

参数

参数

注释

comment

字符串

配置要与该对象实例关联的文本字符串注释。提供的文本字符串将在对象实例上配置。

extattrs

字典

允许在对象的实例上配置可扩展属性。此参数接受一组键/值对进行配置。

name

字符串 / 必需

指定要添加到系统或从中删除的完全限定主机名。用户也可以更新名称,因为可以传递包含 *new_name*、*old_name* 的字典。请参见示例。

port

整数

配置此 SRV 记录的端口 (0-65535)。

priority

整数

配置此 SRV 记录的优先级 (0-65535)。

provider

字典

包含连接详细信息的字典对象。

cert

字符串

指定客户端证书文件,其中包含 x509 配置摘要,用于为与 NIOS 远程实例的安全连接提供额外的安全层。

值也可以使用 INFOBLOX_CERT 环境变量指定。

host

字符串

指定用于通过 REST 连接到 NIOS WAPI 远程实例的 DNS 主机名或地址。

值也可以使用 INFOBLOX_HOST 环境变量指定。

http_pool_connections

整数

在此处插入描述

默认值: 10

http_pool_maxsize

整数

在此处插入描述

默认值: 10

http_request_timeout

整数

在接收响应之前等待的时间量。

值也可以使用 INFOBLOX_HTTP_REQUEST_TIMEOUT 环境变量指定。

默认值: 10

key

字符串

指定用于与证书一起加密的私钥文件,以便与 NIOS 的远程实例连接。

值也可以使用 INFOBLOX_KEY 环境变量指定。

max_results

整数

指定要返回的对象的最大数量,如果设置为负数,则当返回的对象数量超过设置值时,设备将返回错误。

值也可以使用 INFOBLOX_MAX_RESULTS 环境变量指定。

默认值: 1000

max_retries

整数

配置在连接声明可用之前尝试重试的次数。

值也可以使用 INFOBLOX_MAX_RETRIES 环境变量指定。

默认值: 3

password

字符串

指定用于验证与 NIOS 远程实例连接的密码。

值也可以使用 INFOBLOX_PASSWORD 环境变量指定。

silent_ssl_warnings

布尔值

在此处插入描述

选项

  • false

  • true ← (默认)

username

字符串

配置用于验证与 NIOS 远程实例连接的用户名。

值也可以使用 INFOBLOX_USERNAME 环境变量指定。

validate_certs

别名:ssl_verify

布尔值

启用或禁用验证 SSL 证书的布尔值。

值也可以使用 INFOBLOX_SSL_VERIFY 环境变量指定。

选项

  • false ← (默认)

  • true

wapi_version

字符串

指定要使用的 WAPI 版本。

值也可以使用 INFOBLOX_WAPI_VERSION 环境变量指定。

在 Ansible 2.8 之前,默认 WAPI 为 1.4。

默认值: "2.12.3"

state

字符串

配置 NIOS 服务器上对象实例的预期状态。当此值设置为 present 时,对象在设备上配置;当此值设置为 absent 时,该值将从设备中删除(如有必要)。

选项

  • "present" ← (默认)

  • "absent"

target

字符串

配置此 SRV 记录的目标 FQDN。

ttl

整数

配置要与此主机记录关联的 TTL。

view

别名:dns_view

字符串

设置要将此记录关联到的 DNS 视图。DNS 视图必须已在系统上配置。

默认值: "default"

weight

整数

配置此 SRV 记录的权重 (0-65535)。

备注

注意

  • 此模块支持 check_mode

  • 此模块必须在本地运行,可以通过指定connection: local来实现。

  • 请阅读 :ref:`nios_guide` 以获取有关如何将 Infoblox 与 Ansible 一起使用的更多详细信息。

示例

- name: Configure an SRV record
  infoblox.nios_modules.nios_srv_record:
    name: _sip._tcp.service.ansible.com
    port: 5080
    priority: 10
    target: service1.ansible.com
    weight: 10
    state: present
    provider:
      host: "{{ inventory_hostname_short }}"
      username: admin
      password: admin
  connection: local

- name: Add a comment to an existing SRV record
  infoblox.nios_modules.nios_srv_record:
    name: _sip._tcp.service.ansible.com
    port: 5080
    priority: 10
    target: service1.ansible.com
    weight: 10
    comment: this is a test comment
    state: present
    provider:
      host: "{{ inventory_hostname_short }}"
      username: admin
      password: admin
  connection: local

- name: Update name of SRV record
  infoblox.nios_modules.nios_srv_record:
    name: {old_name: _sip._tcp.service.ansible.com, new_name: _sip._udp.service.ansible.com}
    port: 5080
    priority: 10
    target: service1.ansible.com
    weight: 10
    state: present
    provider:
      host: "{{ inventory_hostname_short }}"
      username: admin
      password: admin
  connection: local

- name: Remove an SRV record from the system
  infoblox.nios_modules.nios_srv_record:
    name: _sip._tcp.service.ansible.com
    port: 5080
    priority: 10
    target: service1.ansible.com
    weight: 10
    state: absent
    provider:
      host: "{{ inventory_hostname_short }}"
      username: admin
      password: admin
  connection: local

作者

  • Blair Rampling (@brampling)