effectivelywild.technitium_dns.technitium_dns_update_nsec3_parameters module – Update NSEC3 Parameters
Note
This module is part of the effectivelywild.technitium_dns collection (version 0.4.0).
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install effectivelywild.technitium_dns
.
To use it in a playbook, specify: effectivelywild.technitium_dns.technitium_dns_update_nsec3_parameters
.
New in effectivelywild.technitium_dns 0.2.1
Synopsis
Updates the iteration and salt length parameters for NSEC3 on a signed DNS zone.
The zone must already be signed with DNSSEC and using NSEC3.
Parameters
Parameter |
Comments |
---|---|
Port for the Technitium DNS API. Defaults to 5380 Default: |
|
API token for authentication |
|
Base URL for the Technitium DNS API |
|
The number of iterations to use for hashing Default value is 0 when not specified Default: |
|
The length of salt in bytes to use for hashing Default value is 0 when not specified Default: |
|
Whether to validate SSL certificates when making API requests. Choices:
|
|
The name of the primary zone to update NSEC3 parameters for |
See Also
See also
- effectivelywild.technitium_dns.technitium_dns_sign_zone
Sign a zone with DNSSEC
- effectivelywild.technitium_dns.technitium_dns_convert_to_nsec3
Convert signed zone from NSEC to NSEC3
- effectivelywild.technitium_dns.technitium_dns_get_dnssec_properties
Get DNSSEC properties for a zone
Examples
- name: Update NSEC3 parameters with custom iterations and salt length
technitium_dns_update_nsec3_parameters:
api_url: "http://localhost"
api_token: "myapitoken"
zone: "example.com"
iterations: 10
salt_length: 8
- name: Reset NSEC3 parameters to defaults
technitium_dns_update_nsec3_parameters:
api_url: "http://localhost"
api_token: "myapitoken"
zone: "example.com"
iterations: 0
salt_length: 0
- name: Update only iterations parameter
technitium_dns_update_nsec3_parameters:
api_url: "http://localhost"
api_token: "myapitoken"
zone: "example.com"
iterations: 5
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Full API response from Technitium DNS server Returned: always Sample: |
|
Whether the module made changes Returned: always Sample: |
|
Whether the module failed Returned: always Sample: |
|
Human readable message describing the result Returned: always Sample: |