-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathoutputs.tf
More file actions
31 lines (24 loc) · 809 Bytes
/
outputs.tf
File metadata and controls
31 lines (24 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
output "public_nsips" {
value = azurerm_public_ip.terraform-adc-management-public-ip.*.ip_address
}
output "private_nsips" {
value = azurerm_network_interface.terraform-adc-management-interface.*.private_ip_address
}
output "private_vips" {
value = azurerm_network_interface.terraform-adc-client-interface.*.private_ip_address
}
output "server_subnet_id" {
value = azurerm_subnet.terraform-server-subnet.id
}
output "management_subnet_id" {
value = azurerm_subnet.terraform-management-subnet.id
}
output "bastion_public_ip" {
value = azurerm_public_ip.terraform-ubuntu-public-ip.ip_address
}
output "availability_set_id" {
value = azurerm_availability_set.terraform-availability-set.id
}
output "alb_public_ip" {
value = azurerm_public_ip.terraform-load-balancer-public-ip.ip_address
}