This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvariables.tf
70 lines (59 loc) · 1.57 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
variable "kubernetes_namespace" {
type = string
default = "datadog"
description = "Kubernetes namespace to deploy datadog agent."
}
variable "kubernetes_namespace_create" {
type = bool
default = true
description = "Do you want to create kubernetes namespace?"
}
variable "kubernetes_resources_name_prefix" {
type = string
default = ""
description = "Prefix for kubernetes resources name. For example `tf-module-`"
}
variable "kubernetes_resources_labels" {
type = map(string)
default = {}
description = "Additional labels for kubernetes resources."
}
variable "kubernetes_deployment_node_selector" {
type = map(string)
default = {
"beta.kubernetes.io/os" = "linux"
}
description = "Node selectors for kubernetes deployment"
}
variable "datadog_agent_image" {
type = string
default = "datadog/agent"
}
variable "datadog_agent_image_tag" {
type = string
default = "latest"
}
variable "datadog_agent_api_key" {
type = string
description = "Set the Datadog API Key related to your Organization"
}
variable "datadog_agent_site" {
type = string
default = "datadoghq.com"
description = "Set to 'datadoghq.eu' to send your Agent data to the Datadog EU site"
}
variable "datadog_agent_options_kubelet_tls_verify" {
type = bool
default = true
description = "Check Kubelet TLS certs?"
}
variable "datadog_agent_options_apm_enabled" {
type = bool
default = true
description = "Enable APM logging?"
}
variable "datadog_agent_options_collect_kubernetes_events" {
type = bool
default = true
description = "Collect Kubernetes events?"
}