-
Notifications
You must be signed in to change notification settings - Fork 0
/
output.tf
41 lines (32 loc) · 1022 Bytes
/
output.tf
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
36
37
38
39
40
41
output "path_for_private_ssh_key" {
value = "./pt_key.pem"
}
output "fw-mgmt-server_ip_address" {
value = yandex_compute_instance.mgmt-server.network_interface.0.ip_address
}
output "fw_mgmt_ip_address" {
value = yandex_compute_instance.fw.network_interface.0.ip_address
}
output "fw_public_ip_address" {
value = yandex_compute_instance.fw.network_interface.1.nat_ip_address
}
output "fw_gaia_portal_mgmt-server_password" {
value = "admin"
}
output "fw_smartconsole_mgmt-server_password" {
value = "${random_password.pass-sms[0].result}"
sensitive = true
}
output "fw_sic-password" {
value = "${random_password.pass-sic[0].result}"
sensitive = true
}
output "jump-vm_public_ip_address_jump-vm" {
value = yandex_vpc_address.public-ip-jump-vm.external_ipv4_address.0.address
}
output "jump-vm_path_for_WireGuard_client_config" {
value = "./jump-vm-wg.conf"
}
output "dmz-web-server_ip_address" {
value = "${cidrhost(var.subnet_prefix_list[2], 100)}"
}