Skip to content

Commit 4ddcd41

Browse files
committed
fix: variable and datasource usage and values
1 parent fe816b0 commit 4ddcd41

5 files changed

+31
-11
lines changed

.terraform.lock.hcl

+19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api_gateway.tf

+6-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ resource "aws_apigatewayv2_authorizer" "lambda_authorizer_client" {
1010
authorizer_type = "REQUEST"
1111
authorizer_uri = aws_lambda_function.authorizer_client.invoke_arn
1212
identity_sources = ["$request.header.Authorization"]
13-
name = "SOAT-TC_Lambda_Authorizer_Client"
13+
name = "SOAT-TC_API_Gateway_Authorizer__Lambda_Authorizer_Client"
1414

1515
authorizer_payload_format_version = "2.0"
1616
enable_simple_responses = true
@@ -30,20 +30,20 @@ resource "aws_apigatewayv2_integration" "lambda_identification_nationalid" {
3030
}
3131

3232
// ----- 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.
3335

3436
resource "aws_apigatewayv2_route" "client_identification" {
3537
api_id = local.api_id
3638
route_key = "POST /identification/clients/identification"
3739

38-
// Identification Lambda integration
3940
target = "integrations/${aws_apigatewayv2_integration.lambda_identification_nationalid.id}"
4041
}
4142

4243
resource "aws_apigatewayv2_route" "order_checkout_and_listing" {
4344
api_id = local.api_id
4445
route_key = "ANY /order/orders" // due to Servlet Filter urlPatterns not supporting specific HTTP methods
4546

46-
// Client Lambda Authorizer authorization
4747
authorizer_id = aws_apigatewayv2_authorizer.lambda_authorizer_client.id
4848
authorization_type = "CUSTOM"
4949
target = "integrations/${local.proxy_to_alb_id}"
@@ -53,7 +53,8 @@ resource "aws_apigatewayv2_route" "order_confirmation" {
5353
api_id = local.api_id
5454
route_key = "POST /payment/payments/initialize"
5555

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}"
5859

5960
}

database_variables.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ variable "order_svc_db_password" {
1212
variable "order_svc_db_name" {
1313
description = "Order Service RDS Database instance name"
1414
type = string
15-
default = "postgres"
15+
default = "order_db"
1616
}
1717

1818
// ---
@@ -31,5 +31,5 @@ variable "payment_svc_db_password" {
3131
variable "payment_svc_db_name" {
3232
description = "Payment Service RDS Database instance name"
3333
type = string
34-
default = "postgres"
34+
default = "payment_db"
3535
}

lambda.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,15 @@ resource "aws_lambda_function" "identification_nationalid" {
2424
description = "Generates Client JWT using National ID"
2525
role = data.aws_iam_role.lab_role.arn
2626
handler = "index.handler"
27+
timeout = 10 # debug
2728

2829
source_code_hash = data.archive_file.lambda_identification_nationalid.output_base64sha256
2930

3031
runtime = "nodejs20.x"
3132

3233
environment {
3334
variables = {
34-
BACKEND_URL = local.alb_url
35+
BACKEND_URL = "${local.alb_url}/identification"
3536
JWT_PRIVATE_KEY = var.client_jwt_private_key
3637
}
3738
}
@@ -60,8 +61,7 @@ resource "aws_lambda_function" "authorizer_client" {
6061

6162
environment {
6263
variables = {
63-
BACKEND_URL = local.alb_url
64-
JWT_PRIVATE_KEY = var.client_jwt_private_key
64+
JWT_PUBLIC_KEY = var.client_jwt_public_key
6565
}
6666
}
6767

main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
locals {
2-
alb_url = data.tfe_outputs.network.values.lb_lb.dns_name
2+
alb_url = "http://${data.tfe_outputs.network.values.lb_lb.dns_name}"
33
dynamodb_endpoint = "dynamodb.${var.aws_region}.amazonaws.com"
44
sqs_endpoint = data.tfe_outputs.network.values.vpc_endpoint_sqs.dns_entry[0].dns_name
55

0 commit comments

Comments
 (0)