setup_website
Configure DNS records for a website by specifying domain name and IP address, with optional www subdomain creation.
Instructions
Set up basic DNS records for a website.
Args: domain: The domain name ip: The website IP address www_enabled: Whether to create www subdomain record (default: True)
Returns: List of created DNS records
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | ||
ip | Yes | ||
www_enabled | No |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"title": "Domain",
"type": "string"
},
"ip": {
"title": "Ip",
"type": "string"
},
"www_enabled": {
"default": true,
"title": "Www Enabled",
"type": "boolean"
}
},
"required": [
"domain",
"ip"
],
"type": "object"
}