Add AWS MCP policy and expand CloudFormation role permissions
- Add new AWS MCP managed policy with permissions for MCP tool invocation - Extend IAM permissions: add AttachRolePolicy and CreatePolicy actions - Add ELB permissions for target group modification - Add ECS permissions for task definition management (register/deregister/tag)
This commit is contained in:
parent
c4cc90881e
commit
ebd5d751e2
2 changed files with 40 additions and 0 deletions
18
policies/aws-mcp-policy.yaml
Normal file
18
policies/aws-mcp-policy.yaml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
AWSTemplateFormatVersion: '2010-09-09'
|
||||
Description: AWS MCP Managed Policy
|
||||
|
||||
Resources:
|
||||
AWSMCPPolicy:
|
||||
Type: AWS::IAM::ManagedPolicy
|
||||
Properties:
|
||||
ManagedPolicyName: AWSMCPPolicy
|
||||
Description: AWS MCP permissions for invoking MCP tools
|
||||
PolicyDocument:
|
||||
Version: '2012-10-17'
|
||||
Statement:
|
||||
- Effect: Allow
|
||||
Action:
|
||||
- aws-mcp:InvokeMcp
|
||||
- aws-mcp:CallReadOnlyTool
|
||||
- aws-mcp:CallReadWriteTool
|
||||
Resource: "*"
|
||||
Loading…
Add table
Add a link
Reference in a new issue