Skip to content

Commit

Permalink
add output cluster & asg ARN
Browse files Browse the repository at this point in the history
  • Loading branch information
larufa committed Mar 28, 2024
1 parent 5adfd05 commit 5a22d40
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions cluster/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ output "cluster_name" {
value = aws_ecs_cluster.main.name
}

output "cluster_arn" {
value = aws_ecs_cluster.main.arn
}

output "cloudwatch_log_group_name" {
value = aws_cloudwatch_log_group.ecs_agent.name
}
Expand All @@ -17,3 +21,7 @@ output "cloudwatch_log_group_arn" {
output "autoscaling_group_name" {
value = aws_autoscaling_group.app.name
}

output "autoscaling_group_arn" {
value = aws_autoscaling_group.app.arn
}

0 comments on commit 5a22d40

Please sign in to comment.