Skip to content

Commit

Permalink
update state machine
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbalcaen committed Apr 19, 2024
1 parent eaccee5 commit 52d3b04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions state_machines/email_form_fill/state_machine.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ resource "aws_sfn_state_machine" "sfn_state_machine" {
definition = <<EOF
{
"Comment": "A description of my state machine",
"StartAt": "Lambda Invoke",
"StartAt": "Store Email Medata",
"States": {
"Store Email Medata": {
"Store Email Medata": {
"Type": "Task",
"Next": "Lambda Invoke",
"Parameters": {
Expand All @@ -80,7 +80,7 @@ resource "aws_sfn_state_machine" "sfn_state_machine" {
"OutputPath": "$.Payload",
"Parameters": {
"Payload.$": "$",
"FunctionName": "${var.attachment_saver_lambda_name}"
"FunctionName": "${var.attachment_saver_lambda_name}",
},
"Retry": [
{
Expand Down

0 comments on commit 52d3b04

Please sign in to comment.