Skip to content

Commit 61d0eaa

Browse files
authored
Merge branch 'master' into VED-1029-ea-set-acl
2 parents 87f8fbc + f5f902e commit 61d0eaa

22 files changed

Lines changed: 804 additions & 75 deletions

infrastructure/account/.terraform.lock.hcl

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infrastructure/account/cloudwatch_dashboards.tf

Lines changed: 732 additions & 0 deletions
Large diffs are not rendered by default.

infrastructure/instance/.terraform.lock.hcl

Lines changed: 16 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

infrastructure/instance/ack_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ resource "aws_ecr_repository" "ack_lambda_repository" {
1818
# Module for building and pushing Docker image to ECR
1919
module "ack_processor_docker_image" {
2020
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
21-
version = "8.5.0"
21+
version = "8.7.0"
2222
docker_file_path = "./ack_backend/Dockerfile"
2323
create_ecr_repo = false
2424
ecr_repo = aws_ecr_repository.ack_lambda_repository.name

infrastructure/instance/batch_processor_filter_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resource "aws_ecr_repository" "batch_processor_filter_lambda_repository" {
1717
# Module for building and pushing Docker image to ECR
1818
module "batch_processor_filter_docker_image" {
1919
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
20-
version = "8.5.0"
20+
version = "8.7.0"
2121
docker_file_path = "./batch_processor_filter/Dockerfile"
2222

2323
create_ecr_repo = false

infrastructure/instance/delta.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ resource "aws_ecr_repository" "delta_lambda_repository" {
1616

1717
module "delta_docker_image" {
1818
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
19-
version = "8.5.0"
19+
version = "8.7.0"
2020
docker_file_path = "./delta_backend/Dockerfile"
2121

2222
create_ecr_repo = false

infrastructure/instance/ecs_batch_processor_config.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resource "aws_ecr_repository" "processing_repository" {
2727
# Build and Push Docker Image to ECR (Reusing the existing module)
2828
module "processing_docker_image" {
2929
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
30-
version = "8.5.0"
30+
version = "8.7.0"
3131

3232
create_ecr_repo = false
3333
docker_file_path = "./recordprocessor/Dockerfile"

infrastructure/instance/file_name_processor.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resource "aws_ecr_repository" "file_name_processor_lambda_repository" {
1717
# Module for building and pushing Docker image to ECR
1818
module "file_processor_docker_image" {
1919
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
20-
version = "8.5.0"
20+
version = "8.7.0"
2121
docker_file_path = "./filenameprocessor/Dockerfile"
2222

2323
create_ecr_repo = false

infrastructure/instance/forwarder_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resource "aws_ecr_repository" "forwarder_lambda_repository" {
1717
# Module for building and pushing Docker image to ECR
1818
module "forwarding_docker_image" {
1919
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
20-
version = "8.5.0"
20+
version = "8.7.0"
2121
docker_file_path = "./recordforwarder/Dockerfile"
2222

2323
create_ecr_repo = false

infrastructure/instance/id_sync_lambda.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resource "aws_ecr_repository" "id_sync_lambda_repository" {
1919
# Module for building and pushing Docker image to ECR
2020
module "id_sync_docker_image" {
2121
source = "terraform-aws-modules/lambda/aws//modules/docker-build"
22-
version = "8.5.0"
22+
version = "8.7.0"
2323
docker_file_path = "./id_sync/Dockerfile"
2424
create_ecr_repo = false
2525
ecr_repo = aws_ecr_repository.id_sync_lambda_repository.name

0 commit comments

Comments
 (0)