From 8c9001adebd8061949690dfc55ad888a9c174813 Mon Sep 17 00:00:00 2001 From: Clare Liguori Date: Sat, 18 Jan 2025 15:06:36 -0800 Subject: [PATCH] Add perms to pipeline for invoking flows --- pipeline/pipeline_stack.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pipeline/pipeline_stack.py b/pipeline/pipeline_stack.py index 5f4af63..33ec9d6 100644 --- a/pipeline/pipeline_stack.py +++ b/pipeline/pipeline_stack.py @@ -232,6 +232,9 @@ def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None: actions=[ "states:StartExecution", "states:DescribeExecution", + "bedrock:ListFlows", + "bedrock:ListFlowAliases", + "bedrock:InvokeFlow", ], resources=["*"], )