diff options
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 |