Skip to content

Commit

Permalink
Merge pull request #28 from voyagegroup/output-more-arn
Browse files Browse the repository at this point in the history
add output cluster & asg ARN
  • Loading branch information
larufa authored Mar 28, 2024
2 parents 5adfd05 + 5a22d40 commit 0d4a844
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 0d4a844

Please sign in to comment.