Skip to content

Commit

Permalink
Refactor ingress paths to include trailing slashes
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlahbib committed Nov 16, 2024
1 parent 1115c8a commit b75e7b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/ingress.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ resource "kubernetes_ingress_v1" "dev-ingress" {

http {
path {
path = "/dev"
path = "/dev/"
backend{
service {
name = "app-service"
Expand Down Expand Up @@ -91,7 +91,7 @@ resource "kubernetes_ingress_v1" "monitoring-ingress" {

http {
path {
path = "/grafana"
path = "/grafana/"
backend{
service {
name = "prometheus-operator-grafana"
Expand All @@ -102,7 +102,7 @@ resource "kubernetes_ingress_v1" "monitoring-ingress" {
}
}
path {
path = "/falco"
path = "/falco/"
backend{
service {
name = "falcosidekick"
Expand Down

0 comments on commit b75e7b4

Please sign in to comment.