File tree Expand file tree Collapse file tree 3 files changed +2
-4
lines changed
examples/existing-cluster-with-base-and-infra Expand file tree Collapse file tree 3 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -99,8 +99,6 @@ module "workloads_infra" {
99
99
managed_prometheus_workspace_endpoint = module. eks_observability_accelerator . managed_prometheus_workspace_endpoint
100
100
managed_prometheus_workspace_region = module. eks_observability_accelerator . managed_prometheus_workspace_region
101
101
102
- enable_alerting_rules = false
103
-
104
102
tags = local. tags
105
103
106
104
depends_on = [
Original file line number Diff line number Diff line change 5
5
resource "aws_prometheus_rule_group_namespace" "alerting_rules" {
6
6
count = var. enable_alerting_rules ? 1 : 0
7
7
8
- name = " nodenw-rules "
8
+ name = " accelerator-infra-alerting "
9
9
workspace_id = var. managed_prometheus_workspace_id
10
10
data = << EOF
11
11
groups:
Original file line number Diff line number Diff line change 6
6
7
7
resource "aws_prometheus_rule_group_namespace" "recording_rules" {
8
8
count = var. enable_recording_rules ? 1 : 0
9
- name = " infra-recording -rules"
9
+ name = " acclerator-infra -rules"
10
10
workspace_id = var. managed_prometheus_workspace_id
11
11
data = << EOF
12
12
groups:
You can’t perform that action at this time.
0 commit comments