-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathvariables-application-insights.tf
77 lines (65 loc) · 2.51 KB
/
variables-application-insights.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
variable "application_insights_enabled" {
description = "Whether Application Insights should be deployed."
type = bool
default = true
}
variable "application_insights_id" {
description = "ID of the existing Application Insights to use instead of deploying a new one."
type = string
default = null
}
variable "application_insights_type" {
description = "Application Insights type if need to be generated. See documentation https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/application_insights#application_type"
type = string
default = "web"
}
variable "application_insights_daily_data_cap" {
description = "Daily data volume cap (in GB) for Application Insights."
type = number
default = null
}
variable "application_insights_daily_data_cap_notifications_disabled" {
description = "Whether disable email notifications when data volume cap is met."
type = bool
default = null
}
variable "application_insights_retention" {
description = "Retention period (in days) for logs."
type = number
default = 90
}
variable "application_insights_internet_ingestion_enabled" {
description = "Whether ingestion support from Application Insights component over the Public Internet is enabled."
type = bool
default = true
}
variable "application_insights_internet_query_enabled" {
description = "Whether querying support from Application Insights component over the Public Internet is enabled."
type = bool
default = true
}
variable "application_insights_ip_masking_disabled" {
description = "Whether IP masking in logs is disabled."
type = bool
default = false
}
variable "application_insights_local_authentication_disabled" {
description = "Whether Non-Azure AD based authentication is disabled."
type = bool
default = false
}
variable "application_insights_force_customer_storage_for_profiler" {
description = "Whether to enforce users to create their own Storage Account for profiling in Application Insights."
type = bool
default = false
}
variable "application_insights_log_analytics_workspace_id" {
description = "ID of the Log Analytics Workspace to be used with Application Insights."
type = string
default = null
}
variable "application_insights_sampling_percentage" {
description = "Percentage of data produced by the monitored application sampled for Application Insights telemetry."
type = number
default = null
}