@@ -10,7 +10,7 @@ resource "aws_apigatewayv2_authorizer" "lambda_authorizer_client" {
10
10
authorizer_type = " REQUEST"
11
11
authorizer_uri = aws_lambda_function. authorizer_client . invoke_arn
12
12
identity_sources = [" $request.header.Authorization" ]
13
- name = " SOAT-TC_Lambda_Authorizer_Client "
13
+ name = " SOAT-TC_API_Gateway_Authorizer__Lambda_Authorizer_Client "
14
14
15
15
authorizer_payload_format_version = " 2.0"
16
16
enable_simple_responses = true
@@ -30,20 +30,20 @@ resource "aws_apigatewayv2_integration" "lambda_identification_nationalid" {
30
30
}
31
31
32
32
// ----- Routes -----
33
+ // Routes should be declared on terraform-network whenever possible. The routes below
34
+ // depend on terraform-computing resources, they are declared here to avoid cyclic dependencies.
33
35
34
36
resource "aws_apigatewayv2_route" "client_identification" {
35
37
api_id = local. api_id
36
38
route_key = " POST /identification/clients/identification"
37
39
38
- // Identification Lambda integration
39
40
target = " integrations/${ aws_apigatewayv2_integration . lambda_identification_nationalid . id } "
40
41
}
41
42
42
43
resource "aws_apigatewayv2_route" "order_checkout_and_listing" {
43
44
api_id = local. api_id
44
45
route_key = " ANY /order/orders" // due to Servlet Filter urlPatterns not supporting specific HTTP methods
45
46
46
- // Client Lambda Authorizer authorization
47
47
authorizer_id = aws_apigatewayv2_authorizer. lambda_authorizer_client . id
48
48
authorization_type = " CUSTOM"
49
49
target = " integrations/${ local . proxy_to_alb_id } "
@@ -53,7 +53,8 @@ resource "aws_apigatewayv2_route" "order_confirmation" {
53
53
api_id = local. api_id
54
54
route_key = " POST /payment/payments/initialize"
55
55
56
- // Client Lambda Authorizer authorization
57
- target = " integrations/${ local . proxy_to_alb_id } "
56
+ authorizer_id = aws_apigatewayv2_authorizer. lambda_authorizer_client . id
57
+ authorization_type = " CUSTOM"
58
+ target = " integrations/${ local . proxy_to_alb_id } "
58
59
59
60
}
0 commit comments