From feba66ffd605cc45d182269b17d4d896fdfe12bb Mon Sep 17 00:00:00 2001 From: Geert Date: Thu, 12 Sep 2024 16:45:46 +0200 Subject: [PATCH] Update iam_pipes.tf to support step function sync executions It looks like we're missing the states:StartSyncExecution action so we can execute step functions using the REQUEST_RESPONSE invocation_type --- iam_pipes.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iam_pipes.tf b/iam_pipes.tf index 3b2b8ad..8054ae6 100644 --- a/iam_pipes.tf +++ b/iam_pipes.tf @@ -227,7 +227,8 @@ locals { step_functions = { actions = [ - "states:StartExecution" + "states:StartExecution", + "states:StartSyncExecution" ] }