Skip to content

Commit f3b7664

Browse files
committed
Add fqdn to outputs
1 parent ff539dd commit f3b7664

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

azure/linux-jumpbox/outputs.tf

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,34 @@
1+
output "fqdn" {
2+
value = data.azurerm_public_ip.jumpbox-pip-data.fqdn
3+
}
14
output "nic-id" {
2-
value = module.jumpbox.*.nic-ids[0]
5+
value = module.jumpbox.*.nic-ids[0]
36
}
47

58
output "nic-name" {
6-
value = module.jumpbox.*.nic-names[0]
9+
value = module.jumpbox.*.nic-names[0]
710
}
811

912
output "nic-private-ip" {
10-
value = module.jumpbox.*.nic-private-ips[0]
13+
value = module.jumpbox.*.nic-private-ips[0]
1114
}
1215

1316
output "public-ip" {
1417
value = data.azurerm_public_ip.jumpbox-pip-data.ip_address
1518
}
1619

1720
output "rg-name" {
18-
value = module.jumpbox.rg-name
21+
value = module.jumpbox.rg-name
1922
}
2023

2124
output "vm-id" {
22-
value = module.jumpbox.*.vm-ids[0]
25+
value = module.jumpbox.*.vm-ids[0]
2326
}
2427

2528
output "vm-name" {
26-
value = module.jumpbox.*.vm-names[0]
29+
value = module.jumpbox.*.vm-names[0]
2730
}
2831

2932
output "vm-password" {
30-
value = module.jumpbox.vm-password
33+
value = module.jumpbox.vm-password
3134
}
32-

0 commit comments

Comments
 (0)