Ansible MCP Server

by tarnover
MIT License
1
  • Linux
  • Apple

aws_route53

Manage AWS Route53 DNS records and zones by listing, creating, or deleting zones and records through Ansible MCP Server for streamlined DNS configuration.

Instructions

Manage AWS Route53 DNS records and zones

Input Schema

NameRequiredDescriptionDefault
actionYes
commentNo
recordNameNo
recordStateNo
recordTtlNo
recordTypeNo
recordValueNo
regionYes
zoneIdNo
zoneNameNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "action": { "enum": [ "list_zones", "list_records", "create_zone", "create_record", "delete_record", "delete_zone" ], "type": "string" }, "comment": { "type": "string" }, "recordName": { "type": "string" }, "recordState": { "type": "string" }, "recordTtl": { "type": "number" }, "recordType": { "type": "string" }, "recordValue": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" } ] }, "region": { "minLength": 1, "type": "string" }, "zoneId": { "type": "string" }, "zoneName": { "type": "string" } }, "required": [ "action", "region" ], "type": "object" }
ID: vkbe70d98s