Ansible MCP Server

by tarnover
MIT License
1
  • Linux
  • Apple

aws_rds

Manage AWS RDS database instances with actions like create, delete, start, stop, and list. Configure regions, instance types, storage, security groups, and more via Ansible MCP Server.

Instructions

Manage AWS RDS database instances

Input Schema

NameRequiredDescriptionDefault
actionYes
allocatedStorageNo
backupRetentionPeriodNo
dbEngineNo
dbInstanceClassNo
dbInstanceIdentifierNo
dbSubnetGroupNameNo
masterPasswordNo
masterUsernameNo
multiAZNo
regionYes
skipFinalSnapshotNo
tagsNo
vpcSecurityGroupIdsNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "action": { "enum": [ "list", "create", "delete", "start", "stop" ], "type": "string" }, "allocatedStorage": { "type": "number" }, "backupRetentionPeriod": { "type": "number" }, "dbEngine": { "type": "string" }, "dbInstanceClass": { "type": "string" }, "dbInstanceIdentifier": { "type": "string" }, "dbSubnetGroupName": { "type": "string" }, "masterPassword": { "type": "string" }, "masterUsername": { "type": "string" }, "multiAZ": { "type": "boolean" }, "region": { "minLength": 1, "type": "string" }, "skipFinalSnapshot": { "type": "boolean" }, "tags": { "additionalProperties": { "type": "string" }, "type": "object" }, "vpcSecurityGroupIds": { "items": { "type": "string" }, "type": "array" } }, "required": [ "action", "region" ], "type": "object" }
ID: vkbe70d98s