Skip to content

Commit 9fa3654

Browse files
committed
Fix the exmaples
1 parent e8ba2fe commit 9fa3654

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

website/docs/actions/lambda_invoke.html.markdown

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ resource "aws_lambda_function" "example" {
2828
action "aws_lambda_invoke" "example" {
2929
config {
3030
function_name = aws_lambda_function.example.function_name
31-
payload = jsonencode({
31+
payload = jsonencode({
3232
key1 = "value1"
3333
key2 = "value2"
3434
})
@@ -111,11 +111,11 @@ action "aws_lambda_invoke" "debug" {
111111
```terraform
112112
action "aws_lambda_invoke" "mobile" {
113113
config {
114-
function_name = aws_lambda_function.mobile_backend.function_name
114+
function_name = aws_lambda_function.mobile_backend.function_name
115115
client_context = base64encode(jsonencode({
116116
client = {
117-
client_id = "mobile-app"
118-
app_version = "1.2.3"
117+
client_id = "mobile-app"
118+
app_version = "1.2.3"
119119
}
120120
env = {
121121
locale = "en_US"
@@ -166,7 +166,7 @@ locals {
166166
processing_config = var.environment == "production" ? {
167167
batch_size = 100
168168
timeout = 900
169-
} : {
169+
} : {
170170
batch_size = 10
171171
timeout = 60
172172
}

0 commit comments

Comments
 (0)