generated from equinor/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
78 lines (66 loc) · 3.03 KB
/
variables.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
variable "component_name" {
description = "The name of this Application Insights component."
type = string
}
variable "resource_group_name" {
description = "The name of the resource group to create the resources in."
type = string
}
variable "location" {
description = "The location to create the resources in."
type = string
}
variable "workspace_id" {
description = "The ID of the Log Analytics workspace to send diagnostics to."
type = string
}
variable "local_authentication_disabled" {
description = "Should local authentication be disabled for this Application Insights component? If true, the \"Monitoring Metrics Publisher\" role is required for Microsoft Entra authentication."
type = bool
default = true
}
variable "action_group_id" {
description = "The ID of the action group to send smart detector alerts to."
type = string
}
variable "dependency_performance_degradation_detector_rule_name" {
description = "A custom name for this Dependency Latency Degradation alert rule. If value is set to null, the default name \"Dependency Latency Degradation - <Application Insights resource name>\" will be used for this alert rule."
type = string
nullable = true
default = null
}
variable "exception_volume_changed_detector_rule_name" {
description = "A custom name for this Exception Anomalies alert rule. If value is set to null, the default name \"Exception Anomalies - <Application Insights resource name>\" will be used for this alert rule."
type = string
nullable = true
default = null
}
variable "failure_anomalies_detector_rule_name" {
description = "A custom name for this Failure Anomalies alert rule. If value is set to null, the default name \"Failure Anomalies - <Application Insights resource name>\" will be used for this alert rule."
type = string
nullable = true
default = null
}
variable "memory_leak_detector_rule_name" {
description = "A custom name for this Potential Memory Leak alert rule. If value is set to null, the default name \"Potential Memory Leak - <Application Insights resource name>\" will be used for this alert rule."
type = string
nullable = true
default = null
}
variable "request_performance_degradation_detector_rule_name" {
description = "A custom name for this Response Latency Degradation alert rule. If value is set to null, the default name \"Response Latency Degradation - <Application Insights resource name>\" will be used for this alert rule."
type = string
nullable = true
default = null
}
variable "trace_severity_detector_rule_name" {
description = "A custom name for this Trace Severity Degradation alert rule. If value is set to null, the default name \"Trace Severity Degradation - <Application Insights resource name>\" will be used for this alert rule."
type = string
nullable = true
default = null
}
variable "tags" {
description = "A map of tags to assign to the resources."
type = map(string)
default = {}
}