File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ resource "aws_lambda_function" "example" {
28
28
action "aws_lambda_invoke" "example" {
29
29
config {
30
30
function_name = aws_lambda_function.example.function_name
31
- payload = jsonencode({
31
+ payload = jsonencode({
32
32
key1 = "value1"
33
33
key2 = "value2"
34
34
})
@@ -111,11 +111,11 @@ action "aws_lambda_invoke" "debug" {
111
111
``` terraform
112
112
action "aws_lambda_invoke" "mobile" {
113
113
config {
114
- function_name = aws_lambda_function.mobile_backend.function_name
114
+ function_name = aws_lambda_function.mobile_backend.function_name
115
115
client_context = base64encode(jsonencode({
116
116
client = {
117
- client_id = "mobile-app"
118
- app_version = "1.2.3"
117
+ client_id = "mobile-app"
118
+ app_version = "1.2.3"
119
119
}
120
120
env = {
121
121
locale = "en_US"
@@ -166,7 +166,7 @@ locals {
166
166
processing_config = var.environment == "production" ? {
167
167
batch_size = 100
168
168
timeout = 900
169
- } : {
169
+ } : {
170
170
batch_size = 10
171
171
timeout = 60
172
172
}
You can’t perform that action at this time.
0 commit comments