Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ops/mainnet/mason/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
9 changes: 5 additions & 4 deletions ops/mainnet/mason/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down