You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 6, 2023. It is now read-only.
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 "logs_retention_days" {
type = number
description = "Number of days to keep logs on storage account."
default = 30
}
variable "custom_diagnostic_settings_name" {
description = "Custom name of the diagnostics settings, name will be 'default' if not set."