Files
airun-pathfinder-crud-pricing/terraform/outputs.tf
James Bland 729ecaae1c
All checks were successful
kinec.tech/airun-pathfinder-crud-pricing/pipeline/head This commit looks good
feat: update terraform configuration
- Updated main.tf with infrastructure changes
- Updated outputs configuration
2025-11-28 20:56:57 -05:00

25 lines
683 B
HCL

output "lambda_function_arn" {
description = "ARN of the crud-pricing Lambda function"
value = aws_lambda_function.crud_pricing.arn
}
output "lambda_function_name" {
description = "Name of the crud-pricing Lambda function"
value = aws_lambda_function.crud_pricing.function_name
}
output "lambda_role_arn" {
description = "ARN of the Lambda execution role"
value = aws_iam_role.lambda.arn
}
output "table_name" {
description = "DynamoDB table name used by this Lambda"
value = local.table_name
}
output "api_gateway_endpoint" {
description = "API Gateway endpoint URL"
value = aws_apigatewayv2_api.crud_pricing_api.api_endpoint
}