create_domain
Create a new DNS domain with a default IP address and optional DNSSEC configuration for Vultr cloud infrastructure management.
Instructions
Create a new DNS domain.
Args: domain: The domain name to create ip: The default IP address for the domain dns_sec: Enable DNSSEC (enabled/disabled, default: disabled)
Returns: Created domain information
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| dns_sec | No | disabled | |
| domain | Yes | ||
| ip | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "dns_sec": {
      "default": "disabled",
      "title": "Dns Sec",
      "type": "string"
    },
    "domain": {
      "title": "Domain",
      "type": "string"
    },
    "ip": {
      "title": "Ip",
      "type": "string"
    }
  },
  "required": [
    "domain",
    "ip"
  ],
  "type": "object"
}