15 lines
484 B
HCL
15 lines
484 B
HCL
output "public_ipv4" {
|
|
description = "The static public IPv4 address of the Pangolin proxy."
|
|
value = azurerm_public_ip.pip_v4.ip_address
|
|
}
|
|
|
|
output "public_ipv6" {
|
|
description = "The static public IPv6 address of the Pangolin proxy."
|
|
value = azurerm_public_ip.pip_v6.ip_address
|
|
}
|
|
|
|
output "ssh_ipv4" {
|
|
description = "Ready-to-use SSH command for connecting to the VM over IPv4."
|
|
value = "ssh ${var.admin_username}@${azurerm_public_ip.pip_v4.ip_address}"
|
|
}
|