Skip to content

Commit

Permalink
chore(enable_monitor): add var in flavour
Browse files Browse the repository at this point in the history
  • Loading branch information
Xaving committed Nov 20, 2024
1 parent 54a9e12 commit 152142d
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 3,082 deletions.
13 changes: 7 additions & 6 deletions aks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,13 @@ resource "azurerm_federated_identity_credential" "loki" {
module "loki-stack" {
source = "../"

argocd_project = var.argocd_project
argocd_labels = var.argocd_labels
destination_cluster = var.destination_cluster
target_revision = var.target_revision
app_autosync = var.app_autosync
dependency_ids = var.dependency_ids
argocd_project = var.argocd_project
argocd_labels = var.argocd_labels
destination_cluster = var.destination_cluster
target_revision = var.target_revision
enable_service_monitor = var.enable_service_monitor
app_autosync = var.app_autosync
dependency_ids = var.dependency_ids

resources = var.resources
retention = var.retention
Expand Down
13 changes: 7 additions & 6 deletions eks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,13 @@ module "iam_assumable_role_loki" {
module "loki-stack" {
source = "../"

argocd_project = var.argocd_project
argocd_labels = var.argocd_labels
destination_cluster = var.destination_cluster
target_revision = var.target_revision
app_autosync = var.app_autosync
dependency_ids = var.dependency_ids
argocd_project = var.argocd_project
argocd_labels = var.argocd_labels
destination_cluster = var.destination_cluster
target_revision = var.target_revision
enable_service_monitor = var.enable_service_monitor
app_autosync = var.app_autosync
dependency_ids = var.dependency_ids

resources = var.resources
retention = var.retention
Expand Down
13 changes: 7 additions & 6 deletions kind/main.tf
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
module "loki-stack" {
source = "../"

argocd_project = var.argocd_project
argocd_labels = var.argocd_labels
destination_cluster = var.destination_cluster
target_revision = var.target_revision
app_autosync = var.app_autosync
dependency_ids = var.dependency_ids
argocd_project = var.argocd_project
argocd_labels = var.argocd_labels
destination_cluster = var.destination_cluster
target_revision = var.target_revision
enable_service_monitor = var.enable_service_monitor
app_autosync = var.app_autosync
dependency_ids = var.dependency_ids

resources = var.resources
retention = var.retention
Expand Down
Loading

0 comments on commit 152142d

Please sign in to comment.