import_zone_file
Import DNS records from zone file format to a specified domain, with optional validation through dry-run mode to preview changes before applying.
Instructions
Import DNS records from zone file format.
Args: domain: The domain name to import records to zone_data: DNS zone file content as string dry_run: If True, only validate and return what would be created without making changes
Returns: List of created records or validation results
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | ||
dry_run | No | ||
zone_data | Yes |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"title": "Domain",
"type": "string"
},
"dry_run": {
"default": false,
"title": "Dry Run",
"type": "boolean"
},
"zone_data": {
"title": "Zone Data",
"type": "string"
}
},
"required": [
"domain",
"zone_data"
],
"type": "object"
}