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
参数
参数 |
注释 |
---|---|
配置要与该对象实例关联的文本字符串注释。提供的文本字符串将在对象实例上配置。 |
|
允许在对象的实例上配置可扩展属性。此参数接受一组键/值对进行配置。 |
|
指定要添加到系统或从中删除的完全限定主机名。用户也可以更新名称,因为可以传递包含 *new_name*、*old_name* 的字典。请参见示例。 |
|
配置此 SRV 记录的端口 (0-65535)。 |
|
配置此 SRV 记录的优先级 (0-65535)。 |
|
包含连接详细信息的字典对象。 |
|
指定客户端证书文件,其中包含 x509 配置摘要,用于为与 NIOS 远程实例的安全连接提供额外的安全层。 值也可以使用 |
|
指定用于通过 REST 连接到 NIOS WAPI 远程实例的 DNS 主机名或地址。 值也可以使用 |
|
在此处插入描述 默认值: |
|
在此处插入描述 默认值: |
|
在接收响应之前等待的时间量。 值也可以使用 默认值: |
|
指定用于与证书一起加密的私钥文件,以便与 NIOS 的远程实例连接。 值也可以使用 |
|
指定要返回的对象的最大数量,如果设置为负数,则当返回的对象数量超过设置值时,设备将返回错误。 值也可以使用 默认值: |
|
配置在连接声明可用之前尝试重试的次数。 值也可以使用 默认值: |
|
指定用于验证与 NIOS 远程实例连接的密码。 值也可以使用 |
|
在此处插入描述 选项
|
|
配置用于验证与 NIOS 远程实例连接的用户名。 值也可以使用 |
|
启用或禁用验证 SSL 证书的布尔值。 值也可以使用 选项
|
|
指定要使用的 WAPI 版本。 值也可以使用 在 Ansible 2.8 之前,默认 WAPI 为 1.4。 默认值: |
|
配置 NIOS 服务器上对象实例的预期状态。当此值设置为 选项
|
|
配置此 SRV 记录的目标 FQDN。 |
|
配置要与此主机记录关联的 TTL。 |
|
设置要将此记录关联到的 DNS 视图。DNS 视图必须已在系统上配置。 默认值: |
|
配置此 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