generated from oracle-quickstart/oci-quickstart-template
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathobservability_variables.tf
39 lines (33 loc) · 1.3 KB
/
observability_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
29
30
31
32
33
34
35
36
37
38
39
# Copyright (c) 2023, Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v1.0 as shown at https://oss.oracle.com/licenses/upl.
variable "use_oci_logging" {
type = bool
description = "Enable logging service integration for WebLogic instances"
default = false
}
variable "dynamic_group_id" {
type = string
description = "The dynamic group that contains the WebLogic instances from which logs will be exported to OCI Logging Service"
default = ""
}
variable "use_apm_service" {
type = bool
description = "Indicates if Application Performance Monitoring integration is enabled"
default = false
}
# Variable used in UI only
variable "apm_domain_compartment_id" {
type = string
description = "The OCID of the compartment of the Application Performance Monitoring domain used by WebLogic instances"
default = ""
}
variable "apm_domain_id" {
type = string
description = "The OCID of the Application Performance Monitoring domain used by WebLogic instances"
default = ""
}
variable "apm_private_data_key_name" {
type = string
description = "The name of the private data key used by this instance to push metrics to the Application Performance Monitoring domain"
default = "auto_generated_private_datakey"
}