-
Notifications
You must be signed in to change notification settings - Fork 1
/
output.tf
39 lines (32 loc) · 1.09 KB
/
output.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
output "web_lambda_function_qualified_arn" {
description = "Current Lambda function version"
value = aws_lambda_function.web_lambda_function.version
}
output "artisan_lambda_function_qualified_arn" {
description = "Current Lambda function version"
value = aws_lambda_function.artisan_lambda_function.version
}
output "jobs_worker_lambda_function_qualified_arn" {
description = "Current Lambda function version"
value = aws_lambda_function.jobs_worker_lambda_function.version
}
output "http_api_id" {
description = "Id of the HTTP API"
value = aws_apigatewayv2_api.http_api.id
}
output "http_api_url" {
description = "URL of the HTTP API"
value = aws_apigatewayv2_api.http_api.api_endpoint
}
output "jobs_queue_arn" {
description = "ARN of the \"jobs\" SQS queue."
value = aws_sqs_queue.jobs_queue.arn
}
output "jobs_queue_url" {
description = "URL of the \"jobs\" SQS queue."
value = aws_sqs_queue.jobs_queue.id
}
output "jobs_dlq_url" {
description = "URL of the \"jobs\" SQS dead letter queue."
value = aws_sqs_queue.jobs_dlq.id
}