outputs.tf 446 B

12345678910111213141516171819202122232425262728293031
  1. output "security_group_id" {
  2. value = aws_security_group.lb_server_external.id
  3. }
  4. output "alb" {
  5. value = aws_lb.external
  6. }
  7. output "alb_id" {
  8. value = aws_lb.external.id
  9. }
  10. output "nlb" {
  11. value = aws_lb.static
  12. }
  13. output "nlb_id" {
  14. value = aws_lb.static.id
  15. }
  16. output "nlb_name" {
  17. value = aws_lb.static.name
  18. }
  19. output "static_ips" {
  20. value = aws_eip.static[*].public_ip
  21. }
  22. output "forward" {
  23. value = module.public_dns_record.forward
  24. }