-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathoutputs-monitoring-function.tf
108 lines (89 loc) · 4.47 KB
/
outputs-monitoring-function.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
###############################
# Monitoring Function outputs
###############################
output "monitoring_function_service_plan_id" {
description = "Id of the created Service Plan."
value = one(module.monitoring_function[*].service_plan_id)
}
output "monitoring_function_service_plan_name" {
description = "Name of the created Service Plan."
value = one(module.monitoring_function[*].service_plan_name)
}
output "monitoring_function_storage_account_id" {
description = "ID of the associated Storage Account, empty if connection string provided."
value = one(module.monitoring_function[*].storage_account_id)
}
output "monitoring_function_storage_account_name" {
description = "Name of the associated Storage Account, empty if connection string provided."
value = one(module.monitoring_function[*].storage_account_name)
}
output "monitoring_function_storage_queries_table_name" {
description = "Name of the queries table in the Storage Account, empty if connection string provided."
value = one(module.monitoring_function[*].storage_queries_table_name)
}
output "monitoring_function_storage_account_primary_connection_string" {
description = "Primary connection string of the associated Storage Account, empty if connection string provided."
value = one(module.monitoring_function[*].storage_account_primary_connection_string)
sensitive = true
}
output "monitoring_function_storage_account_primary_access_key" {
description = "Primary connection string of the associated Storage Account, empty if connection string provided."
value = one(module.monitoring_function[*].storage_account_primary_access_key)
sensitive = true
}
output "monitoring_function_storage_account_secondary_connection_string" {
description = "Secondary connection string of the associated Storage Account, empty if connection string provided."
value = one(module.monitoring_function[*].storage_account_secondary_connection_string)
sensitive = true
}
output "monitoring_function_storage_account_secondary_access_key" {
description = "Secondary connection string of the associated Storage Account, empty if connection string provided."
value = one(module.monitoring_function[*].storage_account_secondary_access_key)
sensitive = true
}
output "monitoring_function_application_insights_id" {
description = "ID of the associated Application Insights."
value = one(module.monitoring_function[*].application_insights_id)
}
output "monitoring_function_application_insights_name" {
description = "Name of the associated Application Insights."
value = one(module.monitoring_function[*].application_insights_name)
}
output "monitoring_function_application_insights_app_id" {
description = "App ID of the associated Application Insights."
value = one(module.monitoring_function[*].application_insights_app_id)
}
output "monitoring_function_application_insights_instrumentation_key" {
description = "Instrumentation key of the associated Application Insights."
value = one(module.monitoring_function[*].application_insights_instrumentation_key)
sensitive = true
}
output "monitoring_function_application_insights_application_type" {
description = "Application Type of the associated Application Insights."
value = one(module.monitoring_function[*].application_insights_application_type)
}
output "monitoring_function_function_app_id" {
description = "ID of the created Function App."
value = one(module.monitoring_function[*].function_app_id)
}
output "monitoring_function_function_app_name" {
description = "Name of the created Function App."
value = one(module.monitoring_function[*].function_app_name)
}
output "monitoring_function_function_app_outbound_ip_addresses" {
description = "Outbound IP addresses of the created Function App."
value = one(module.monitoring_function[*].function_app_outbound_ip_addresses)
}
output "monitoring_function_function_app_connection_string" {
description = "Connection string of the created Function App."
value = one(module.monitoring_function[*].function_app_connection_string)
sensitive = true
}
output "monitoring_function_app_identity_principal_id" {
description = "Identity principal ID output of the Function App."
value = one(module.monitoring_function[*].function_app_identity_principal_id)
}
output "module_monitoring_function" {
description = "Monitoring function module outputs."
value = one(module.monitoring_function[*])
}