generated from tothenew/terraform-aws-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_variables-logs.tf
28 lines (24 loc) · 1.02 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
# Diag settings / logs parameters
variable "logs_destinations_ids" {
type = list(string)
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 specify an Azure EventHub to send logs and metrics to, you need to provide a formated string with both the EventHub Namespace authorization send ID and the EventHub name (name of the queue to use in the Namespace) separated by the `|` 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 "custom_diagnostic_settings_name" {
description = "Custom name of the diagnostics settings, name will be 'default' if not set."
type = string
default = "default"
}