aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.terraform/1n_nmd/alertmanager/variables.tf
blob: e24ceb64c652377062a6b6f5685a32e463711215 (plain)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# Nomad
variable "nomad_datacenters" {
  description = "Nomad data centers"
  type        = list(string)
  default     = ["dc1"]
}

# Alermanager
variable "alertmanager_job_name" {
  description = "Job name"
  type        = string
  default     = "alertmanager"
}

variable "alertmanager_group_count" {
  description = "Number of group instances"
  type        = number
  default     = 1
}

variable "alertmanager_service_name" {
  description = "Service name"
  type        = string
  default     = "alertmanager"
}

variable "alertmanager_version" {
  description = "Version"
  type        = string
  default     = "0.21.0"
}

variable "alertmanager_use_canary" {
  description = "Uses canary deployment"
  type        = bool
  default     = false
}

variable "alertmanager_vault_secret" {
  description = "Set of properties to be able to fetch secret from vault"
  type = object({
    use_vault_provider        = bool,
    vault_kv_policy_name      = string,
    vault_kv_path             = string,
    vault_kv_field_access_key = string,
    vault_kv_field_secret_key = string
  })
}

variable "alertmanager_cpu" {
  description = "CPU allocation"
  type        = number
  default     = 1000
}

variable "alertmanager_mem" {
  description = "RAM allocation"
  type        = number
  default     = 1024
}

variable "alertmanager_port" {
  description = "TCP allocation"
  type        = number
  default     = 9093
}

variable "alertmanager_slack_jenkins_api_key" {
  description = "Alertmanager jenkins slack API key"
  type        = string
  default     = "XXXXXXXXX/XXXXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXX"
}

variable "alertmanager_slack_jenkins_receiver" {
  description = "Alertmanager jenkins slack receiver"
  type        = string
  default     = "jenkins-slack-receiver"
}

variable "alertmanager_slack_jenkins_channel" {
  description = "Alertmanager jenkins slack channel"
  type        = string
  default     = "jenkins-channel"
}

variable "alertmanager_slack_default_api_key" {
  description = "Alertmanager default slack API key"
  type        = string
  default     = "XXXXXXXXX/XXXXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXX"
}

variable "alertmanager_slack_default_receiver" {
  description = "Alertmanager default slack receiver"
  type        = string
  default     = "default-slack-receiver"
}

variable "alertmanager_slack_default_channel" {
  description = "Alertmanager default slack channel"
  type        = string
  default     = "default-channel"
}