Skip to content

Commit

Permalink
Fix workspace input
Browse files Browse the repository at this point in the history
  • Loading branch information
bonclay7 committed Jan 15, 2024
1 parent cae2ea4 commit 28689b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/eks-monitoring/alerts.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ resource "aws_prometheus_rule_group_namespace" "alerting_rules" {
count = var.enable_alerting_rules ? 1 : 0

name = "accelerator-infra-alerting"
workspace_id = var.managed_prometheus_workspace_id
workspace_id = local.managed_prometheus_workspace_id
data = <<EOF
groups:
- name: infra-alerts-01
Expand Down
2 changes: 1 addition & 1 deletion modules/eks-monitoring/rules.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
resource "aws_prometheus_rule_group_namespace" "recording_rules" {
count = var.enable_recording_rules ? 1 : 0
name = "accelerator-infra-rules"
workspace_id = var.managed_prometheus_workspace_id
workspace_id = local.managed_prometheus_workspace_id
data = <<EOF
groups:
- name: infra-rules-01
Expand Down

0 comments on commit 28689b8

Please sign in to comment.