-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables-logs.tf
29 lines (25 loc) · 1.04 KB
/
variables-logs.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
# Diag settings / logs parameters
variable "logs_destinations_ids" {
type = list(string)
nullable = false
description = <<EOD
List of destination resources IDs for logs diagnostic destination.
Can be `Storage Account`, `Log Analytics Workspace` and `Event Hub`. No more than one of each can be set.
If you want to use Azure EventHub as a destination, you must provide a formatted string containing both the EventHub Namespace authorization send ID and the EventHub name (name of the queue to use in the Namespace) separated by the <code>|</code> character.
EOD
}
variable "logs_categories" {
type = list(string)
description = "Log categories to send to destinations."
default = null
}
variable "logs_metrics_categories" {
type = list(string)
description = "Metrics categories to send to destinations."
default = null
}
variable "diagnostic_settings_custom_name" {
description = "Custom name of the diagnostics settings, name will be `default` if not set."
type = string
default = "default"
}