-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy pathvariables.tf
38 lines (36 loc) · 976 Bytes
/
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
variable "public_key" {
description = "MongoDB Atlas authentication Public API key"
type = string
}
variable "private_key" {
description = "MongoDB Atlas authentication Private API key"
type = string
}
variable "project_id" {
description = "MongoDB Atlas project id"
type = string
}
variable "datadog_api_key" {
description = "Datadog api key"
type = string
}
variable "datadog_region" {
description = "Datadog region"
default = "US5"
type = string
}
variable "cluster_name" {
description = "Cluster to test regional mode"
default = "datadog-test-cluster"
type = string
}
variable "send_collection_latency_metrics" {
description = "Send collection latency metrics (only for Datadog integrations)"
default = false
type = bool
}
variable "send_database_metrics" {
description = "Send database metrics (only for Datadog integrations)"
default = false
type = bool
}