Advertisement
Guest User

Untitled

a guest
Aug 14th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. output "lb_id" {
  2. value = "${aws_lb.alb.id}"
  3. }
  4.  
  5. output "lb_name" {
  6. value = "${aws_lb.alb.name}"
  7. }
  8.  
  9. output "dns_name" {
  10. value = "${aws_lb.alb.dns_name}"
  11. }
  12.  
  13. output "private_ip" {
  14. value = "${aws_lb.alb.ip_address_type}"
  15. }
  16.  
  17. output "tg_name" {
  18. value = "${aws_lb_target_group.alb_tg.name}"
  19. }
  20.  
  21. output "att_id" {
  22. value = "${aws_lb_target_group_attachment.alb_tg_att.id}"
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement