We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 678f2ab + 9d348a3 commit dca3bc2Copy full SHA for dca3bc2
outputs.tf
@@ -12,3 +12,8 @@ output "public_ip" {
12
value = try(azurerm_public_ip.this[0].ip_address, null)
13
description = "Linux Virtual Machine public IP address"
14
}
15
+
16
+output "private_ip" {
17
+ value = try(azurerm_linux_virtual_machine.this.private_ip_address, null)
18
+ description = "Linux Virtual Machine private IP address"
19
+}
0 commit comments