-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvariables.tf
56 lines (47 loc) · 1.52 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
variable "aws_region" {
description = "AWS Region"
type = string
}
variable "eks_cluster_id" {
description = "Name of the EKS cluster"
type = string
}
variable "namespace" {
description = "Namespace where electrodes will be installed"
type = string
default = "ekg-monitoring"
}
variable "create_namespace" {
description = "Namespace speciefed by variable namespace will be created, if not exists"
type = bool
default = true
}
variable "managed_prometheus_workspace_id" {
description = "Amazon Managed Service for Prometheus Workspace IDAmazon Managed Service for Prometheus Workspace ID (when nothing passed new will be created)"
type = string
default = ""
}
variable "tags" {
description = "Additional tags (e.g. `map('BusinessUnit`,`XYZ`)"
type = map(string)
default = {}
}
variable "nobl9_organization_id" {
description = "Nobl9 Organization ID (visible in Nobl9 web app under Settings > Account)"
type = string
}
variable "nobl9_project_name" {
description = "Nobl9 Project name (create one in the Nobl9 web app using Catalog > Projects, or use 'default')"
type = string
default = "default"
}
variable "nobl9_client_id" {
description = "Nobl9 Client ID (create in Nobl9 web app using Settings > Access Keys)"
type = string
sensitive = true
}
variable "nobl9_client_secret" {
description = "Nobl9 Client Secret (create in Nobl9 web app using Settings > Access Keys)"
type = string
sensitive = true
}