From ebf807713c6cadd5a28021c70fbb77a67842b9bf Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 8 May 2026 11:54:17 +0000 Subject: [PATCH 1/2] magicplan client ECR --- infrastructure/terraform/shared/main.tf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index 34fbfe75..be20683e 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -730,4 +730,19 @@ module "hubspot_etl_s3_read_and_write" { output "hubspot_etl_s3_read_and_write_arn" { value = module.hubspot_etl_s3_read_and_write.policy_arn +} + + +################################################ +# MagicPlan Client – Lambda +################################################ +module "magic_client_trigger_bucket" { + source = "../modules/tf_state_bucket" + bucket_name = "magic-plan-client-terraform-state" +} + +module "magic_plan_client_registry" { + source = "../modules/container_registry" + name = "magic-plan" + stage = var.stage } \ No newline at end of file From 1ddbb9a79d1a9c5b8ac15fcac2954952f6913a92 Mon Sep 17 00:00:00 2001 From: Daniel Roth Date: Fri, 8 May 2026 11:56:21 +0000 Subject: [PATCH 2/2] typo --- infrastructure/terraform/shared/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/terraform/shared/main.tf b/infrastructure/terraform/shared/main.tf index be20683e..050ebdc2 100644 --- a/infrastructure/terraform/shared/main.tf +++ b/infrastructure/terraform/shared/main.tf @@ -736,7 +736,7 @@ output "hubspot_etl_s3_read_and_write_arn" { ################################################ # MagicPlan Client – Lambda ################################################ -module "magic_client_trigger_bucket" { +module "magic_plan_client_bucket" { source = "../modules/tf_state_bucket" bucket_name = "magic-plan-client-terraform-state" }