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" {
2828action "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
112112action "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 }
You can’t perform that action at this time.
0 commit comments