123456789101112131415161718192021 |
- ## Outputs
- output "alb_security_group_id" {
- value = aws_security_group.alb_sg.id
- }
- output "ec2_security_group_id" {
- value = aws_security_group.ec2_sg.id
- }
- output "alb_arn" {
- value = aws_lb.alb_ec2.arn
- }
- output "alb_dns_name" {
- value = aws_lb.alb_ec2.dns_name
- }
- output "autoscaling_group_arn" {
- value = aws_autoscaling_group.ec2_autoscaling_group.arn
- }
|