-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
59 lines (48 loc) · 1.5 KB
/
outputs.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# ./outputs.tf
# Networking outputs
output "vpc_id" {
description = "The ID of the VPC"
value = module.networking.vpc_id
}
output "public_subnet_ids" {
description = "List of public subnet IDs"
value = module.networking.public_subnet_ids
}
output "private_subnet_ids" {
description = "List of private subnet IDs"
value = module.networking.private_subnet_ids
}
output "redis_subnet_id" {
description = "ID of the Redis subnet"
value = module.networking.redis_subnet_id
}
# Container Service outputs
output "ecs_cluster_arn" {
description = "ARN of the ECS cluster"
value = module.container_service.ecs_cluster_arn
}
output "ecs_cluster_name" {
description = "Name of the ECS cluster"
value = module.container_service.ecs_cluster_name
}
output "ecs_service_name" {
description = "Name of the ECS service"
value = module.container_service.ecs_service_name
}
output "alb_dns_name" {
description = "DNS name of the Application Load Balancer"
value = module.container_service.alb_dns_name
}
# Serverless outputs
output "lambda_function_name" {
description = "Name of the Lambda function"
value = module.serverless.lambda_function_name
}
output "lambda_function_arn" {
description = "ARN of the Lambda function"
value = module.serverless.lambda_function_arn
}
output "cloudwatch_log_group_name" {
description = "Name of the CloudWatch Log Group for the Lambda function"
value = module.serverless.cloudwatch_log_group_name
}