-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
output.tf
24 lines (20 loc) · 808 Bytes
/
output.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
output "azure_bastion_subnet_id" {
description = "The resource ID of Azure bastion subnet"
value = element(concat([azurerm_subnet.abs_snet.0.id], [""]), 0)
}
output "azure_bastion_public_ip" {
description = "The public IP of the virtual network gateway"
value = element(concat([azurerm_public_ip.pip.ip_address], [""]), 0)
}
output "azure_bastion_public_ip_fqdn" {
description = "Fully qualified domain name of the virtual network gateway"
value = element(concat([azurerm_public_ip.pip.fqdn], [""]), 0)
}
output "azure_bastion_host_id" {
description = "The resource ID of the Bastion Host"
value = azurerm_bastion_host.main.id
}
output "azure_bastion_host_fqdn" {
description = "The fqdn of the Bastion Host"
value = azurerm_bastion_host.main.dns_name
}