-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path90-output.tf
More file actions
37 lines (27 loc) · 968 Bytes
/
Copy path90-output.tf
File metadata and controls
37 lines (27 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
output "internal_ip_address_vm_1" {
value = yandex_compute_instance.vm1-master.network_interface[0].ip_address
}
output "external_ip_address_vm_1" {
value = yandex_compute_instance.vm1-master.network_interface[0].nat_ip_address
}
output "internal_ip_address_vm_2" {
value = yandex_compute_instance.vm2-node01.network_interface[0].ip_address
}
output "external_ip_address_vm_2" {
value = yandex_compute_instance.vm2-node01.network_interface[0].nat_ip_address
}
output "internal_ip_address_vm_3" {
value = yandex_compute_instance.vm3-node02.network_interface[0].ip_address
}
output "external_ip_address_vm_3" {
value = yandex_compute_instance.vm3-node02.network_interface[0].nat_ip_address
}
output "subnet_vm" {
value = yandex_vpc_subnet.subnet-01.id
}
output "network_vm" {
value = yandex_vpc_subnet.subnet-01.network_id
}
# output "lb-01" {
# value = yandex_lb_network_load_balancer.lb-01.listener.*.external_address_spec[0].*.address
# }