Skip to content

Commit

Permalink
#32 added outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
kunduso committed May 2, 2024
1 parent 6a32891 commit ea487b7
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions infra/output.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
output "public_subnet_ids" {
value = aws_subnet.public.*.id
}
output "security_group_id" {
value = aws_security_group.custom_sg.id
}
output "aws_lb_target_group" {
value = aws_lb_target_group.tg_blue.arn
}
output "cluster_name" {
value = aws_ecs_cluster.app_cluster.name
}
output "cloud_watch_log_group_name" {
value = aws_cloudwatch_log_group.logs.name
}

0 comments on commit ea487b7

Please sign in to comment.