Skip to content

Commit

Permalink
Merge pull request #362 from shrutimantri/fix_lambda_example
Browse files Browse the repository at this point in the history
fix(example): correct the task example for AWS Lambda
  • Loading branch information
anna-geller authored Jan 31, 2024
2 parents 084bd16 + 67577b1 commit 66bf352
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/kestra/plugin/aws/lambda/Invoke.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"accessKeyId: \"<access-key>\"",
"secretKeyId: \"<secret-key>\"",
"region: \"eu-central-1\"",
"functionArn: \"arn:aws:lambda:us-west-2:123456789012:function:my-function\""
"functionArn: \"arn:aws:lambda:eu-central-1:123456789012:function:my-function\""
}
),
@Example(
Expand All @@ -66,7 +66,7 @@
"accessKeyId: \"<access-key>\"",
"secretKeyId: \"<secret-key>\"",
"region: \"eu-central-1\"",
"functionArn: \"arn:aws:lambda:us-west-2:123456789012:function:my-function\"",
"functionArn: \"arn:aws:lambda:eu-central-1:123456789012:function:my-function\"",
"functionPayload:",
" id: 1",
" firstname: \"John\"",
Expand Down

0 comments on commit 66bf352

Please sign in to comment.