community.general.netcup_dns 模块 – 管理 Netcup DNS 记录
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要进一步的要求才能使用此模块,请参阅 要求 以了解详细信息。
要在 playbook 中使用它,请指定:community.general.netcup_dns
。
概要
通过 Netcup API 管理 DNS 记录,请参阅文档 https://ccp.netcup.net/run/webservice/servers/endpoint.php。
要求
执行此模块的主机上需要以下要求。
nc-dnsapi >= 0.1.3
参数
参数 |
注释 |
---|---|
用于身份验证的 API 密钥,必须通过 netcup CCP 获取(https://ccp.netcup.net)。 |
|
用于身份验证的 API 密码,必须通过 netcup CCP 获取(https://ccp.netcup.net)。 |
|
Netcup 客户 ID。 |
|
应添加/删除记录的域名。 |
|
记录优先级。对于 |
|
要添加或删除的记录,支持通配符( 默认值: |
|
记录是否应该存在。 选项
|
|
HTTP(S) 连接超时时间(秒)。 默认值: |
|
记录类型。 在 community.general 8.1.0 中添加了对 记录类型 记录类型 选项
|
|
记录值。 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持: 完全 |
可以在 |
|
支持: 无 |
当处于 diff 模式时,将返回有关已更改内容(或可能需要在 |
示例
- name: Create a record of type A
community.general.netcup_dns:
api_key: "..."
api_password: "..."
customer_id: "..."
domain: "example.com"
name: "mail"
type: "A"
value: "127.0.0.1"
- name: Delete that record
community.general.netcup_dns:
api_key: "..."
api_password: "..."
customer_id: "..."
domain: "example.com"
name: "mail"
type: "A"
value: "127.0.0.1"
state: absent
- name: Create a wildcard record
community.general.netcup_dns:
api_key: "..."
api_password: "..."
customer_id: "..."
domain: "example.com"
name: "*"
type: "A"
value: "127.0.1.1"
- name: Set the MX record for example.com
community.general.netcup_dns:
api_key: "..."
api_password: "..."
customer_id: "..."
domain: "example.com"
type: "MX"
value: "mail.example.com"
- name: Set a record and ensure that this is the only one
community.general.netcup_dns:
api_key: "..."
api_password: "..."
customer_id: "..."
name: "demo"
domain: "example.com"
type: "AAAA"
value: "::1"
solo: true
- name: Increase the connection timeout to avoid problems with an unstable connection
community.general.netcup_dns:
api_key: "..."
api_password: "..."
customer_id: "..."
domain: "example.com"
name: "mail"
type: "A"
value: "127.0.0.1"
timeout: 30
返回值
通用返回值记录在这里,以下是此模块特有的字段
键 |
描述 |
---|---|
包含所有记录的列表 返回: 成功 |
|
记录的内部 ID 返回: 成功 示例: |
|
记录名称 返回: 成功 示例: |
|
记录优先级(仅当 type=MX 时相关) 返回: 成功 示例: |
|
记录类型 返回: 成功 示例: |
|
记录目标地址 返回: 成功 示例: |