Skip to content

Commit

Permalink
Adding values files
Browse files Browse the repository at this point in the history
  • Loading branch information
gitkvark authored and JoAngel8 committed Jan 5, 2024
1 parent 09a7516 commit 4870d74
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
8 changes: 8 additions & 0 deletions terraform/deployments/preprod/releases/monitoring-ingress.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "helm_release" "monitoring_ingress" {
name = "monitoring-ingress"
chart = "${path.module}/../../../../helm/monitoring-ingress"
version = "0.1.2"
values = [
file("${path.module}/../../../../helm/monitoring-ingress/values-preprod.yaml")
]
}
8 changes: 8 additions & 0 deletions terraform/deployments/prod/releases/monitoring-ingress.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "helm_release" "monitoring_ingress" {
name = "monitoring-ingress"
chart = "${path.module}/../../../../helm/monitoring-ingress"
version = "0.1.2"
values = [
file("${path.module}/../../../../helm/monitoring-ingress/values-prod.yaml")
]
}
5 changes: 0 additions & 5 deletions terraform/deployments/releases/monitoring-ingress.tf

This file was deleted.

0 comments on commit 4870d74

Please sign in to comment.