Ansible MCP Server

by tarnover
MIT License
1
  • Linux
  • Apple

aws_cloudformation

Execute AWS CloudFormation stack operations such as create, update, delete, or list stacks using Ansible. Define stack parameters, templates, and capabilities to manage AWS resources efficiently.

Instructions

Manage AWS CloudFormation stacks

Input Schema

NameRequiredDescriptionDefault
actionYes
capabilitiesNo
parametersNo
regionYes
stackNameNo
tagsNo
templateBodyNo
templateUrlNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "action": { "enum": [ "list", "create", "update", "delete" ], "type": "string" }, "capabilities": { "items": { "type": "string" }, "type": "array" }, "parameters": { "additionalProperties": {}, "type": "object" }, "region": { "minLength": 1, "type": "string" }, "stackName": { "type": "string" }, "tags": { "additionalProperties": { "type": "string" }, "type": "object" }, "templateBody": { "type": "string" }, "templateUrl": { "type": "string" } }, "required": [ "action", "region" ], "type": "object" }
ID: vkbe70d98s