From 136a8475334a18b94d7a82c753bab84fb3c3824e Mon Sep 17 00:00:00 2001 From: Andy Lo-A-Foe Date: Fri, 23 Sep 2022 16:37:30 +0200 Subject: [PATCH] Use stable version --- variables.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/variables.tf b/variables.tf index d2f68b7..d49b54e 100644 --- a/variables.tf +++ b/variables.tf @@ -16,25 +16,25 @@ variable "name_postfix" { variable "thanos_image" { description = "Image to use for Thanos app. Use a v* tagged version to prevent automatic updates" - default = "philipslabs/cf-thanos:v5.5.2" + default = "philipslabs/cf-thanos:v6.0.0" type = string } variable "thanos_query_image" { description = "Image to use for Thanos query. Use a v* tagged version to prevent automatic updates" - default = "philipslabs/cf-thanos:v5.5.2" + default = "philipslabs/cf-thanos:v6.0.0" type = string } variable "thanos_store_image" { description = "Image to use for Thanos store. Use a v* tagged version to prevent automatic updates" - default = "philipslabs/cf-thanos:v5.5.2" + default = "philipslabs/cf-thanos:v6.0.0" type = string } variable "thanos_compactor_image" { description = "Image to use for Thanos compactor. Use a v* tagged version to prevent automatic updates" - default = "philipslabs/cf-thanos:v5.5.2" + default = "philipslabs/cf-thanos:v6.0.0" type = string } @@ -163,7 +163,7 @@ variable "cf_functional_account" { variable "cf_paas_exporter_image" { description = "Image to use for cf paas exporter. Use a v* tagged version to prevent automatic updates" - default = "governmentpaas/paas-prometheus-exporter:latest" + default = "loafoe/paas-prometheus-exporter:v0.0.5" type = string }