Created
January 5, 2021 19:41
-
-
Save parshyn-dima/98c3632091d0387468f12a7dd5720d6b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
output "external_ip_address_app" { | |
value = yandex_compute_instance.app.network_interface.0.nat_ip_address | |
} | |
output "external_ip_address_lb" { | |
value = yandex_lb_network_load_balancer.reddit_app_lb.listener.*.external_address_spec[0].*.address | |
} | |
output "external_port_lb" { | |
value = yandex_lb_network_load_balancer.reddit_app_lb.listener.*.port | |
} | |
output "target_port_lb" { | |
value = yandex_lb_network_load_balancer.reddit_app_lb.listener.*.target_port | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment