Skip to content

Commit

Permalink
fix: this
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 committed May 20, 2024
1 parent 366bcc8 commit f029b0d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/monitoring/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ data "jsonnet_file" "dashboard" {
source = "${path.module}/dashboard.jsonnet"

ext_str = {
dashboard_title = "Push Server - ${title(module.this.stage)}"
dashboard_uid = "push-${module.this.stage}"
dashboard_title = "Push Server - ${title(var.environment)}"
dashboard_uid = "push-${var.environment}"

prometheus_uid = grafana_data_source.prometheus.uid
cloudwatch_uid = grafana_data_source.cloudwatch.uid

environment = module.this.stage
environment = var.environment
notifications = jsonencode(var.notification_channels)
}
}
Expand Down

0 comments on commit f029b0d

Please sign in to comment.