Skip to content

Commit 0a41dcb

Browse files
committed
fixing integration type argument
1 parent 15ca4ef commit 0a41dcb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

apigateway.tf

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ resource "aws_api_gateway_rest_api" "test" {
1919
}
2020
}
2121
x-amazon-apigateway-integration = {
22-
httpMethod = "POST"
23-
payloadFormatVersion = "1.0"
24-
type = "HTTP_PROXY"
25-
uri = aws_lambda_function.epb_test_lambda.invoke_arn
22+
httpMethod = "POST"
23+
type = "AWS_PROXY"
24+
uri = aws_lambda_function.epb_test_lambda.invoke_arn
2625
}
2726
}
2827
}

0 commit comments

Comments
 (0)