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.
1 parent 678f2ab commit 9d348a3Copy full SHA for 9d348a3
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