diff options
author | pmikus <peter.mikus@protonmail.ch> | 2023-02-14 08:02:04 +0000 |
---|---|---|
committer | pmikus <peter.mikus@protonmail.ch> | 2023-02-14 08:02:04 +0000 |
commit | 3b0fd814e4925d4918a3209682d4ef6f5ab3c8e1 (patch) | |
tree | 08bbeb2c936789b9f0c8968c54dd4243c5144f32 /fdio.infra.terraform/terraform-nomad-prometheus/variables.tf | |
parent | 4dbdc6dc88ca89cb01d2209fc69c0ea182a730d5 (diff) |
feat(terraform): Update Prometheus
Signed-off-by: pmikus <peter.mikus@protonmail.ch>
Change-Id: I968d713b93ca2ac917cc9f9b9299d6373fbb87db
Diffstat (limited to 'fdio.infra.terraform/terraform-nomad-prometheus/variables.tf')
-rw-r--r-- | fdio.infra.terraform/terraform-nomad-prometheus/variables.tf | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/fdio.infra.terraform/terraform-nomad-prometheus/variables.tf b/fdio.infra.terraform/terraform-nomad-prometheus/variables.tf index eab4d3b466..3c8c4b7a26 100644 --- a/fdio.infra.terraform/terraform-nomad-prometheus/variables.tf +++ b/fdio.infra.terraform/terraform-nomad-prometheus/variables.tf @@ -21,7 +21,7 @@ variable "volume_source" { variable "pm_version" { description = "Prometheus version" type = string - default = "2.33.1" + default = "2.42.0" } variable "auto_promote" { @@ -48,6 +48,12 @@ variable "cpu" { default = 2000 } +variable "constraint_value" { + description = "The constraint allows restricting the set of eligible nodes." + type = string + default = "builder" +} + variable "data_dir" { description = "Prometheus DISK allocation" type = string @@ -102,6 +108,12 @@ variable "use_host_volume" { default = true } +variable "artifact_source_checksum" { + description = "Prometheus release checksum" + type = string + default = "422dab055ed9c7bcaff52b718705f9192c6fac0de6b7e78dd278e70ee2663dcc" +} + variable "volume_destination" { description = "Specifies where the volume should be mounted inside the task" type = string |