X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=fdio.infra.terraform%2F1n_nmd%2Fprometheus%2Fvariables.tf;fp=fdio.infra.terraform%2F1n_nmd%2Fprometheus%2Fvariables.tf;h=a509533ccd95ff0b491555985dd3b53ff499e2b3;hb=c318223fcd266c0ee2982e803c44e193c2023054;hp=0000000000000000000000000000000000000000;hpb=221e2f4da7cb27954525d973d930cb8db4601c8f;p=csit.git diff --git a/fdio.infra.terraform/1n_nmd/prometheus/variables.tf b/fdio.infra.terraform/1n_nmd/prometheus/variables.tf new file mode 100644 index 0000000000..a509533ccd --- /dev/null +++ b/fdio.infra.terraform/1n_nmd/prometheus/variables.tf @@ -0,0 +1,84 @@ +# Nomad +variable "nomad_datacenters" { + description = "Nomad data centers" + type = list(string) + default = [ "dc1" ] +} + +variable "nomad_host_volume" { + description = "Nomad Host Volume" + type = string + default = "persistence" +} + +# Prometheus +variable "prometheus_job_name" { + description = "Prometheus job name" + type = string + default = "prometheus" +} + +variable "prometheus_group_count" { + description = "Number of prometheus group instances" + type = number + default = 1 +} + +variable "prometheus_service_name" { + description = "Prometheus service name" + type = string + default = "prometheus" +} + +variable "prometheus_version" { + description = "Prometheus version" + type = string + default = "v2.24.0" +} + +variable "prometheus_use_canary" { + description = "Uses canary deployment" + type = bool + default = false +} + +variable "prometheus_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 "prometheus_cpu" { + description = "Prometheus CPU allocation" + type = number + default = 2000 +} + +variable "prometheus_mem" { + description = "Prometheus RAM allocation" + type = number + default = 8192 +} + +variable "prometheus_port" { + description = "Prometheus TCP allocation" + type = number + default = 9200 +} + +variable "prometheus_data_dir" { + description = "Prometheus DISK allocation" + type = string + default = "/data" +} + +variable "prometheus_use_host_volume" { + description = "Use Nomad host volume feature" + type = bool + default = false +} \ No newline at end of file