All checks were successful
kinec.tech/airun-pathfinder-crud-pricing/pipeline/head This commit looks good
- Updated main.tf with infrastructure changes - Updated outputs configuration
25 lines
683 B
HCL
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
|
|
}
|