mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 00:49:03 +00:00
Fix state machine input/output passing (#11647)
https://stackoverflow.com/questions/47650838/passthrough-input-to-output-in-aws-step-functions
This commit is contained in:
parent
b9c05238f4
commit
98cbf9550e
1 changed files with 2 additions and 1 deletions
|
|
@ -275,7 +275,8 @@ resource "aws_sfn_state_machine" "main" {
|
|||
]
|
||||
}
|
||||
},
|
||||
"Next": "Idle"
|
||||
"Next": "Idle",
|
||||
"ResultPath": null
|
||||
},
|
||||
"Idle": {
|
||||
"Type": "Wait",
|
||||
|
|
|
|||
Loading…
Reference in a new issue