From 98cbf9550ea2d2000bcf15ed0fe067a557f551e7 Mon Sep 17 00:00:00 2001 From: Zachary Winnerman <98712682+zwinnerman-fleetdm@users.noreply.github.com> Date: Thu, 11 May 2023 16:02:48 -0400 Subject: [PATCH] Fix state machine input/output passing (#11647) https://stackoverflow.com/questions/47650838/passthrough-input-to-output-in-aws-step-functions --- infrastructure/sandbox/JITProvisioner/deprovisioner.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/infrastructure/sandbox/JITProvisioner/deprovisioner.tf b/infrastructure/sandbox/JITProvisioner/deprovisioner.tf index 66270c53c8..0a307c8b12 100644 --- a/infrastructure/sandbox/JITProvisioner/deprovisioner.tf +++ b/infrastructure/sandbox/JITProvisioner/deprovisioner.tf @@ -275,7 +275,8 @@ resource "aws_sfn_state_machine" "main" { ] } }, - "Next": "Idle" + "Next": "Idle", + "ResultPath": null }, "Idle": { "Type": "Wait",