Skip to content

Commit 167164e

Browse files
JosephJoseph
authored andcommitted
Fix CI workflow issues: Terraform formatting and Markdown linting configuration
1 parent ee546c4 commit 167164e

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

.markdownlint.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"default": true,
3+
"MD013": {
4+
"line_length": 150
5+
},
6+
"MD022": true,
7+
"MD026": false,
8+
"MD031": true,
9+
"MD032": true,
10+
"MD033": false,
11+
"MD040": true,
12+
"MD047": true
13+
}

templates/terraform/monitoring-stack/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,16 +191,16 @@ resource "kubernetes_manifest" "deployment_frequency_monitor" {
191191

192192
# Output important values
193193
output "grafana_url" {
194-
value = "https://grafana.example.com"
194+
value = "https://grafana.example.com"
195195
description = "Grafana dashboard URL"
196196
}
197197

198198
output "prometheus_url" {
199-
value = "http://prometheus-kube-prometheus-prometheus.${var.namespace}.svc.cluster.local:9090"
199+
value = "http://prometheus-kube-prometheus-prometheus.${var.namespace}.svc.cluster.local:9090"
200200
description = "Prometheus internal URL"
201201
}
202202

203203
output "alertmanager_url" {
204-
value = "http://prometheus-kube-prometheus-alertmanager.${var.namespace}.svc.cluster.local:9093"
204+
value = "http://prometheus-kube-prometheus-alertmanager.${var.namespace}.svc.cluster.local:9093"
205205
description = "AlertManager internal URL"
206206
}

0 commit comments

Comments
 (0)