-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
79 lines (64 loc) · 2.4 KB
/
outputs.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
output "azurerm_lb" {
description = "Exported Attributes for `azurerm_lb.main`."
value = azurerm_lb.main
}
output "azurerm_lb_backend_address_pool" {
description = "Exported Attributes for `azurerm_lb_backend_address_pool.main`."
value = azurerm_lb_backend_address_pool.main
}
output "azurerm_lb_probe" {
description = "Exported Attributes for `azurerm_lb_probe.main`."
value = azurerm_lb_probe.main
}
output "azurerm_linux_virtual_machine_scale_set" {
description = "Exported Attributes for `azurerm_linux_virtual_machine_scale_set.main`."
value = azurerm_linux_virtual_machine_scale_set.main
sensitive = true
}
output "azurerm_monitor_autoscale_setting" {
description = "Exported Attributes for ``azurerm_monitor_autoscale_setting.main`."
value = azurerm_monitor_autoscale_setting.main
}
output "azurerm_network_security_group" {
description = "Exported Attributes for ``azurerm_network_security_group.main`."
value = azurerm_network_security_group.main
}
output "azurerm_public_ip" {
description = "Exported Attributes for `azurerm_public_ip.main`."
value = azurerm_public_ip.main
}
output "azurerm_resource_group" {
description = "Exported Attributes for `azurerm_resource_group`."
value = azurerm_resource_group.main
}
output "azurerm_storage_account" {
description = "Exported Attributes for `azurerm_storage_account`."
value = azurerm_storage_account.main
sensitive = true
}
output "azurerm_subnet" {
description = "Exported Attributes for `azurerm_subnet.main`."
value = azurerm_subnet.main
}
output "azurerm_ssh_public_key" {
description = "Exported Attributes for `azurerm_ssh_public_key.main`."
value = azurerm_ssh_public_key.main
}
output "azurerm_virtual_network" {
description = "Exported Attributes for `azurerm_virtual_network.main`."
value = azurerm_virtual_network.main
}
output "azurerm_virtual_network_dns_servers" {
description = "Exported Attributes for ``azurerm_virtual_network_dns_servers.main."
value = azurerm_virtual_network_dns_servers.main
}
output "portal_urls" {
description = "Microsoft Azure Portal URLs."
value = [
"https://portal.azure.com/#view/HubsExtension/BrowseAll",
]
}
output "tfe_workspace_terraform_version" {
description = "Terraform version identifier of current HCP Terraform Workspace."
value = data.tfe_workspace.main.terraform_version
}