outputs.tf 367 B

123456789101112131415161718192021
  1. ## Outputs
  2. output "alb_security_group_id" {
  3. value = aws_security_group.alb_sg.id
  4. }
  5. output "ec2_security_group_id" {
  6. value = aws_security_group.ec2_sg.id
  7. }
  8. output "alb_arn" {
  9. value = aws_lb.alb_ec2.arn
  10. }
  11. output "alb_dns_name" {
  12. value = aws_lb.alb_ec2.dns_name
  13. }
  14. output "autoscaling_group_arn" {
  15. value = aws_autoscaling_group.ec2_autoscaling_group.arn
  16. }