fix(observability): Observability example retention was in wrong order (#776)

Signed-off-by: Alexander Dahmen <alexander.dahmen@inovex.de>
This commit is contained in:
Alexander Dahmen 2025-04-10 09:52:52 +02:00 committed by GitHub
parent 8b072e213c
commit 3f3801aceb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 6 deletions

View file

@ -18,9 +18,9 @@ resource "stackit_observability_instance" "example" {
name = "example-instance"
plan_name = "Observability-Monitoring-Medium-EU01"
acl = ["1.1.1.1/32", "2.2.2.2/32"]
metrics_retention_days = 7
metrics_retention_days_5m_downsampling = 30
metrics_retention_days_1h_downsampling = 365
metrics_retention_days = 30
metrics_retention_days_5m_downsampling = 10
metrics_retention_days_1h_downsampling = 5
}
```