Merge pull request #1057 from Hestia-Homes/feature/magicplan-trigger

MagicPlan Client: Create ECR and tfstate
This commit is contained in:
Daniel Roth 2026-05-08 12:57:54 +01:00 committed by GitHub
commit 761bd5d215
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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_plan_client_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
}