-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
31 lines (24 loc) · 582 Bytes
/
outputs.tf
File metadata and controls
31 lines (24 loc) · 582 Bytes
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
output "cluster_id" {
value = aws_ecs_cluster.ecs.id
}
output "cluster_name" {
value = aws_ecs_cluster.ecs.name
}
output "cluster_arn" {
value = aws_ecs_cluster.ecs.arn
}
output "log_group_name" {
value = aws_cloudwatch_log_group.ecs.name
}
output "asg_arn" {
value = aws_autoscaling_group.ecs.arn
}
output "asg_name" {
value = aws_autoscaling_group.ecs.name
}
output "service_discovery_namespace_id" {
value = aws_service_discovery_private_dns_namespace.ecs.id
}
output "service_discovery_arn" {
value = aws_service_discovery_private_dns_namespace.ecs.arn
}