Files
netology-devops/src/homework/05-virtualization/5.4/terraform/output.tf
2022-05-11 10:55:12 +07:00

8 lines
265 B
HCL

output "internal_ip_address_node01_yandex_cloud" {
value = "${yandex_compute_instance.node01.network_interface.0.ip_address}"
}
output "external_ip_address_node01_yandex_cloud" {
value = "${yandex_compute_instance.node01.network_interface.0.nat_ip_address}"
}