-
Notifications
You must be signed in to change notification settings - Fork 10
/
outputs.tf
34 lines (28 loc) · 1.11 KB
/
outputs.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
output "SSH" {
value = "ssh vyos@${equinix_metal_device.router.network.0.address}"
description = "Command to SSH into the VyOS Router"
}
output "Out_of_Band_Console" {
value = "ssh ${equinix_metal_device.router.id}@sos.${lower(equinix_metal_device.router.metro)}.platformequinix.com"
description = "Command to SSH into the Serial over Lan Console of the VyOS Router"
}
output "VyOS_Config_File" {
value = "${path.module}/vyos.conf"
description = "The Name of the VyOS config file"
}
output "BGP_Password" {
value = random_string.bgp_password.result
description = "The BGP password for peering"
}
output "IPSec_Pre_Shared_Key" {
value = random_string.ipsec_psk.result
description = "IPSec pre shared key for authentication."
}
output "IPSec_Public_IP" {
value = equinix_metal_device.router.network.0.address
description = "Public IP for IPSec VPN"
}
output "IPSec_Private_IP_CIDR" {
value = format("%s/%s", cidrhost(var.ipsec_private_cidr, 2), split("/", var.ipsec_private_cidr)[1])
description = "Private IP space inside the ipsec tunnel to do BGP peering."
}