generated from oracle-quickstart/oci-quickstart-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
monitoring-variables.tf
28 lines (24 loc) · 1.06 KB
/
monitoring-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
# ###################################################################################################### #
# Copyright (c) 2023 Oracle and/or its affiliates, All rights reserved. #
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl. #
# ###################################################################################################### #
variable "workload_warning_topic_endpoints" {
type = list(string)
default = []
description = "List of email addresses for Workload Warning notifications."
}
variable "workload_critical_topic_endpoints" {
type = list(string)
default = []
description = "List of email addresses for Workload Critical notifications."
}
variable "enable_workload_critical_alarm" {
type = bool
default = false
description = "Enable critical alarms in Workload compartment"
}
variable "enable_workload_warning_alarm" {
type = bool
default = false
description = "Enable warning alarms in Workload compartment"
}