forked from MsftArgHacks/Terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
46 lines (34 loc) · 1.07 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
output "app_service_plan_id" {
value = azurerm_app_service_plan.mshack.id
}
output "app_service_id" {
value = azurerm_app_service.mshack.id
}
output "app_service_name" {
value = azurerm_app_service.mshack.name
}
output "app_service_default_site_hostname" {
value = azurerm_app_service.mshack.default_site_hostname
}
output "app_service_outbound_ip_addresses" {
value = split(",", azurerm_app_service.mshack.outbound_ip_addresses)
}
output "app_service_possible_outbound_ip_addresses" {
value = split(",", azurerm_app_service.mshack.possible_outbound_ip_addresses)
}
output "app_service_source_control" {
value = azurerm_app_service.mshack.source_control
}
output "app_sp" {
value = azurerm_app_service.mshack.identity.*.principal_id
}
output "app_tenant_id" {
value = azurerm_app_service.mshack.identity.*.tenant_id
}
///ouput Application Insight
output "instrumentation_key" {
value = azurerm_application_insights.mshack.instrumentation_key
}
output "app_id" {
value = azurerm_application_insights.mshack.app_id
}