Ansible MCP Server

by tarnover
MIT License
1
  • Linux
  • Apple

aws_vpc

Automate AWS VPC management by listing, creating, or deleting virtual private cloud networks, configuring subnets, DNS settings, and tags using Ansible MCP Server.

Instructions

Manage AWS VPC networks

Input Schema

NameRequiredDescriptionDefault
actionYes
cidrBlockNo
dnsHostnamesNo
dnsSupportNo
nameNo
regionYes
subnetsNo
tagsNo
vpcIdNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "action": { "enum": [ "list", "create", "delete" ], "type": "string" }, "cidrBlock": { "type": "string" }, "dnsHostnames": { "type": "boolean" }, "dnsSupport": { "type": "boolean" }, "name": { "type": "string" }, "region": { "minLength": 1, "type": "string" }, "subnets": { "items": { "additionalProperties": false, "properties": { "az": { "type": "string" }, "cidr": { "type": "string" }, "tags": { "additionalProperties": { "type": "string" }, "type": "object" } }, "required": [ "cidr" ], "type": "object" }, "type": "array" }, "tags": { "additionalProperties": { "type": "string" }, "type": "object" }, "vpcId": { "type": "string" } }, "required": [ "action", "region" ], "type": "object" }
ID: vkbe70d98s