Skip to content

Commit

Permalink
feat: ASG rolling deploy モジュール, ALB モジュールから出力を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
tkdn committed Mar 9, 2024
1 parent 69be867 commit 47c19e6
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
output "asg_name" {
description = "name of th ASG"
value = aws_autoscaling_group.example.name
}

output "instance_security_group_id" {
description = "ID of EC2 instance SG"
value = aws_security_group.instance.id
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
output "alb_dns_name" {
description = "Domain of ALB"
value = aws_alb.example.dns_name
}

output "alb_http_listener_arn" {
description = "ARN of the HTTP listener"
value = aws_alb_listener.http.arn
}

output "alb_security_group_id" {
description = "ALB SG ID"
value = aws_security_group.alb.id
}

0 comments on commit 47c19e6

Please sign in to comment.