Ansible MCP Server

by tarnover
MIT License
1
  • Linux
  • Apple

aws_iam

Automate AWS IAM role and policy management by listing, creating, or deleting resources. Integrate with Ansible MCP Server for streamlined AWS IAM operations.

Instructions

Manage AWS IAM roles and policies

Input Schema

NameRequiredDescriptionDefault
actionYes
assumeRolePolicyDocumentNo
managedPoliciesNo
nameNo
pathNo
policyDocumentNo
policyNameNo
regionYes
roleNameNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "action": { "enum": [ "list_roles", "list_policies", "create_role", "create_policy", "delete_role", "delete_policy" ], "type": "string" }, "assumeRolePolicyDocument": {}, "managedPolicies": { "items": { "type": "string" }, "type": "array" }, "name": { "type": "string" }, "path": { "type": "string" }, "policyDocument": {}, "policyName": { "type": "string" }, "region": { "minLength": 1, "type": "string" }, "roleName": { "type": "string" } }, "required": [ "action", "region" ], "type": "object" }
ID: vkbe70d98s