X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=terraform-ci-infra%2F1n_nmd%2Falertmanager%2Fvariables.tf;fp=terraform-ci-infra%2F1n_nmd%2Falertmanager%2Fvariables.tf;h=ebd862123d52c5ed05ba5dc26fa0c1ce6eea99d0;hb=6717a3bc8b5fb81c1a19964fd367878230331457;hp=0000000000000000000000000000000000000000;hpb=ba5dcdbecd4c009c832c2a186a58566a5ef4dc81;p=csit.git diff --git a/terraform-ci-infra/1n_nmd/alertmanager/variables.tf b/terraform-ci-infra/1n_nmd/alertmanager/variables.tf new file mode 100644 index 0000000000..ebd862123d --- /dev/null +++ b/terraform-ci-infra/1n_nmd/alertmanager/variables.tf @@ -0,0 +1,84 @@ +# 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_default_receiver" { + description = "Alertmanager default receiver" + type = string + default = "default-receiver" +} + +variable "alertmanager_slack_api_url" { + description = "Alertmanager slack API URL" + type = string + default = "https://hooks.slack.com/services/XXXXXXXXX/XXXXXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXX" +} + +variable "alertmanager_slack_channel" { + description = "Alertmanager slack channel" + type = string + default = "slack-channel" +} \ No newline at end of file