From 71c0e6b2f3fe8a445b3c3e2c08860d2f62011b5b Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Mon, 9 Mar 2026 13:39:09 +0000 Subject: [PATCH] move lambda_with_sqs to terraform/modules --- infrastructure/terraform/lambda/_template/main.tf | 2 +- .../terraform/{lambda => }/modules/lambda_with_sqs/main.tf | 0 .../terraform/{lambda => }/modules/lambda_with_sqs/outputs.tf | 0 .../terraform/{lambda => }/modules/lambda_with_sqs/variables.tf | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename infrastructure/terraform/{lambda => }/modules/lambda_with_sqs/main.tf (100%) rename infrastructure/terraform/{lambda => }/modules/lambda_with_sqs/outputs.tf (100%) rename infrastructure/terraform/{lambda => }/modules/lambda_with_sqs/variables.tf (100%) diff --git a/infrastructure/terraform/lambda/_template/main.tf b/infrastructure/terraform/lambda/_template/main.tf index c6015ea1..81b1c7f1 100644 --- a/infrastructure/terraform/lambda/_template/main.tf +++ b/infrastructure/terraform/lambda/_template/main.tf @@ -26,7 +26,7 @@ data "terraform_remote_state" "shared" { } module "lambda" { - source = "../modules/lambda_with_sqs" + source = "../../modules/lambda_with_sqs" name = REPLACE ME #"address2uprn" for example stage = var.stage diff --git a/infrastructure/terraform/lambda/modules/lambda_with_sqs/main.tf b/infrastructure/terraform/modules/lambda_with_sqs/main.tf similarity index 100% rename from infrastructure/terraform/lambda/modules/lambda_with_sqs/main.tf rename to infrastructure/terraform/modules/lambda_with_sqs/main.tf diff --git a/infrastructure/terraform/lambda/modules/lambda_with_sqs/outputs.tf b/infrastructure/terraform/modules/lambda_with_sqs/outputs.tf similarity index 100% rename from infrastructure/terraform/lambda/modules/lambda_with_sqs/outputs.tf rename to infrastructure/terraform/modules/lambda_with_sqs/outputs.tf diff --git a/infrastructure/terraform/lambda/modules/lambda_with_sqs/variables.tf b/infrastructure/terraform/modules/lambda_with_sqs/variables.tf similarity index 100% rename from infrastructure/terraform/lambda/modules/lambda_with_sqs/variables.tf rename to infrastructure/terraform/modules/lambda_with_sqs/variables.tf