File tree Expand file tree Collapse file tree 3 files changed +2
-42
lines changed Expand file tree Collapse file tree 3 files changed +2
-42
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ data "aws_grafana_workspace" "this" {
13
13
workspace_id = var. managed_grafana_workspace_id
14
14
}
15
15
16
-
17
16
locals {
18
17
eks_oidc_issuer_url = replace (data. aws_eks_cluster . eks_cluster . identity [0 ]. oidc [0 ]. issuer , " https://" , " " )
19
18
eks_cluster_endpoint = data. aws_eks_cluster . eks_cluster . endpoint
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ resource "aws_prometheus_alert_manager_definition" "this" {
18
18
19
19
workspace_id = local. amp_ws_id
20
20
21
- # TODO: support custom alert manager config
22
21
definition = << EOF
23
22
alertmanager_config: |
24
23
route:
@@ -64,41 +63,3 @@ resource "grafana_data_source" "amp" {
64
63
resource "grafana_folder" "this" {
65
64
title = " Observability Accelerator Dashboards"
66
65
}
67
-
68
- # module "java" {
69
- # count = var.enable_java ? 1 : 0
70
- # source = "./modules/workloads/java"
71
-
72
- # addon_context = local.context
73
-
74
- # amp_endpoint = local.amp_ws_endpoint
75
- # amp_id = local.amp_ws_id
76
- # amp_region = local.amp_ws_region
77
-
78
- # enable_recording_rules = var.enable_java_recording_rules
79
-
80
- # dashboards_folder_id = grafana_folder.this.id
81
-
82
- # depends_on = [
83
- # module.operator
84
- # ]
85
- # }
86
-
87
- # module "infra" {
88
- # count = var.enable_infra_metrics ? 1 : 0
89
- # source = "./modules/workloads/kube-prometheus"
90
-
91
- # addon_context = local.context
92
-
93
- # amp_endpoint = local.amp_ws_endpoint
94
- # amp_id = local.amp_ws_id
95
- # amp_region = local.amp_ws_region
96
- # config = var.infra_metrics_config
97
-
98
- # dashboards_folder_id = grafana_folder.this.id
99
-
100
- # depends_on = [
101
- # module.operator
102
- # ]
103
-
104
- # }
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ terraform {
7
7
required_providers {
8
8
grafana = {
9
9
source = " grafana/grafana"
10
- version = " 1.25.0"
10
+ version = " ~> 1.25.0"
11
11
}
12
12
}
13
13
}
@@ -16,7 +16,7 @@ data "aws_partition" "current" {}
16
16
17
17
# deploys collector
18
18
module "helm_addon" {
19
- source = " github.com/aws-observability /terraform-aws-eks-blueprints/modules/kubernetes-addons/helm-addon"
19
+ source = " github.com/aws-ia /terraform-aws-eks-blueprints/modules/kubernetes-addons/helm-addon"
20
20
21
21
22
22
helm_config = merge (
You can’t perform that action at this time.
0 commit comments