From dfa6a6ab415ca0169abb4ab71ab84bf1b7bf71dd Mon Sep 17 00:00:00 2001 From: Oleg Tsybizov Date: Thu, 29 Jan 2026 17:17:18 -0600 Subject: [PATCH] fix: removed poller reference from mason tf output --- ops/mainnet/mason/main.tf | 2 +- ops/mainnet/mason/outputs.tf | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/ops/mainnet/mason/main.tf b/ops/mainnet/mason/main.tf index 76e83489..52f69fce 100644 --- a/ops/mainnet/mason/main.tf +++ b/ops/mainnet/mason/main.tf @@ -424,7 +424,7 @@ module "mark_invoice_handler" { task_subnets = module.network.private_subnets efs_id = module.efs.mark_efs_id docker_image = var.handler_image_uri - container_family = "${var.bot_name}-invoice-handler" + container_family = "${var.bot_name}-handler" container_port = 3000 cpu = 512 memory = 1024 diff --git a/ops/mainnet/mason/outputs.tf b/ops/mainnet/mason/outputs.tf index 6f2f976a..81ebec4b 100644 --- a/ops/mainnet/mason/outputs.tf +++ b/ops/mainnet/mason/outputs.tf @@ -18,10 +18,11 @@ output "pushgateway_service_url" { value = module.mark_pushgateway.service_url } -output "lambda_function_name" { - description = "Name of the Lambda function" - value = module.mark_poller.function_name -} +# Main poller Lambda has been removed (migrated to invoice handler) +# output "lambda_function_name" { +# description = "Name of the Lambda function" +# value = module.mark_poller.function_name +# } output "lambda_tac_only_function_name" { description = "Name of the TAC-only Lambda function"