Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit a7b27ff

Browse files
committed
Switch completely to service key
1 parent 4259397 commit a7b27ff

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,21 +104,21 @@ module "thanos" {
104104
| <a name="input_tenants"></a> [tenants](#input\_tenants) | The list of tenants to scrape. When an app does not specify tenant then 'default' is used | `list(string)` | <pre>[<br> "default"<br>]</pre> | no |
105105
| <a name="input_thanos_compactor_disk_quota"></a> [thanos\_compactor\_disk\_quota](#input\_thanos\_compactor\_disk\_quota) | Thanos disk quota | `number` | `5000` | no |
106106
| <a name="input_thanos_compactor_enabled"></a> [thanos\_compactor\_enabled](#input\_thanos\_compactor\_enabled) | Enable or disable the Thanos compactor component | `bool` | `true` | no |
107-
| <a name="input_thanos_compactor_image"></a> [thanos\_compactor\_image](#input\_thanos\_compactor\_image) | Image to use for Thanos compactor. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.4.0"` | no |
107+
| <a name="input_thanos_compactor_image"></a> [thanos\_compactor\_image](#input\_thanos\_compactor\_image) | Image to use for Thanos compactor. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.5.0"` | no |
108108
| <a name="input_thanos_compactor_memory"></a> [thanos\_compactor\_memory](#input\_thanos\_compactor\_memory) | Thanos store memory | `number` | `1024` | no |
109109
| <a name="input_thanos_disk_quota"></a> [thanos\_disk\_quota](#input\_thanos\_disk\_quota) | Thanos disk quota | `number` | `5000` | no |
110110
| <a name="input_thanos_extra_config"></a> [thanos\_extra\_config](#input\_thanos\_extra\_config) | Any extra yaml config that will be merged into the prometheus config at runtime. Extra targets can be added here. | `string` | `""` | no |
111111
| <a name="input_thanos_file_sd_url"></a> [thanos\_file\_sd\_url](#input\_thanos\_file\_sd\_url) | A URL that exposes a prometheus file\_sd yaml file will be periodically downloaded and used for service discovery | `string` | `""` | no |
112-
| <a name="input_thanos_image"></a> [thanos\_image](#input\_thanos\_image) | Image to use for Thanos app. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.4.0"` | no |
112+
| <a name="input_thanos_image"></a> [thanos\_image](#input\_thanos\_image) | Image to use for Thanos app. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.5.0"` | no |
113113
| <a name="input_thanos_memory"></a> [thanos\_memory](#input\_thanos\_memory) | Thanos memory | `number` | `1024` | no |
114114
| <a name="input_thanos_public_endpoints"></a> [thanos\_public\_endpoints](#input\_thanos\_public\_endpoints) | Make Thanos public endpoint | `bool` | `false` | no |
115-
| <a name="input_thanos_query_image"></a> [thanos\_query\_image](#input\_thanos\_query\_image) | Image to use for Thanos query. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.4.0"` | no |
115+
| <a name="input_thanos_query_image"></a> [thanos\_query\_image](#input\_thanos\_query\_image) | Image to use for Thanos query. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.5.0"` | no |
116116
| <a name="input_thanos_query_memory"></a> [thanos\_query\_memory](#input\_thanos\_query\_memory) | Thanos memory | `number` | `1024` | no |
117117
| <a name="input_thanos_query_service_bindings"></a> [thanos\_query\_service\_bindings](#input\_thanos\_query\_service\_bindings) | A list of service instances that should be bound to the thanos app | `list(object({ service_instance = string }))` | `[]` | no |
118118
| <a name="input_thanos_service_bindings"></a> [thanos\_service\_bindings](#input\_thanos\_service\_bindings) | A list of service instances that should be bound to the thanos app | `list(object({ service_instance = string }))` | `[]` | no |
119119
| <a name="input_thanos_storage_tsdb_retention_time"></a> [thanos\_storage\_tsdb\_retention\_time](#input\_thanos\_storage\_tsdb\_retention\_time) | Thanos storage tsdb retention time | `string` | `"2h"` | no |
120120
| <a name="input_thanos_store_disk_quota"></a> [thanos\_store\_disk\_quota](#input\_thanos\_store\_disk\_quota) | Thanos store disk quota | `number` | `5000` | no |
121-
| <a name="input_thanos_store_image"></a> [thanos\_store\_image](#input\_thanos\_store\_image) | Image to use for Thanos store. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.4.0"` | no |
121+
| <a name="input_thanos_store_image"></a> [thanos\_store\_image](#input\_thanos\_store\_image) | Image to use for Thanos store. Use a v* tagged version to prevent automatic updates | `string` | `"ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.5.0"` | no |
122122
| <a name="input_thanos_store_memory"></a> [thanos\_store\_memory](#input\_thanos\_store\_memory) | Thanos store memory | `number` | `1536` | no |
123123
| <a name="input_thanos_store_service_bindings"></a> [thanos\_store\_service\_bindings](#input\_thanos\_store\_service\_bindings) | A list of service instances that should be bound to the thanos\_store app | `list(object({ service_instance = string }))` | `[]` | no |
124124

variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,25 @@ variable "name_postfix" {
1111

1212
variable "thanos_image" {
1313
description = "Image to use for Thanos app. Use a v* tagged version to prevent automatic updates"
14-
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.4.0"
14+
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.5.0"
1515
type = string
1616
}
1717

1818
variable "thanos_query_image" {
1919
description = "Image to use for Thanos query. Use a v* tagged version to prevent automatic updates"
20-
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.4.0"
20+
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.5.0"
2121
type = string
2222
}
2323

2424
variable "thanos_store_image" {
2525
description = "Image to use for Thanos store. Use a v* tagged version to prevent automatic updates"
26-
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.4.0"
26+
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.5.0"
2727
type = string
2828
}
2929

3030
variable "thanos_compactor_image" {
3131
description = "Image to use for Thanos compactor. Use a v* tagged version to prevent automatic updates"
32-
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.4.0"
32+
default = "ghcr.io/philips-labs/terraform-cloudfoundry-thanos:v6.5.0"
3333
type = string
3434
}
3535

0 commit comments

Comments
 (0)