Skip to content

Commit

Permalink
fix: bad MongoDB module calls in localhost and GCP (#1319)
Browse files Browse the repository at this point in the history
  • Loading branch information
lemaitre-aneo authored Sep 2, 2024
2 parents 00ea1b3 + 753581c commit 7f8f43d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions infrastructure/quick-deploy/gcp/storage.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ module "mongodb" {
replicas = var.mongodb.replicas
helm_chart_repository = try(coalesce(var.mongodb.helm_chart_repository), var.helm_charts.mongodb.repository)
helm_chart_version = try(coalesce(var.mongodb.helm_chart_version), var.helm_charts.mongodb.version)
mongodb_resources = var.mongodb.mongodb_resources
arbiter_resources = var.mongodb.arbiter_resources
}
mongodb_resources = var.mongodb.mongodb_resources
arbiter_resources = var.mongodb.arbiter_resources
persistent_volume = null
}

Expand Down
4 changes: 2 additions & 2 deletions infrastructure/quick-deploy/localhost/storage.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ module "mongodb" {
replicas = var.mongodb.replicas
helm_chart_repository = try(coalesce(var.mongodb.helm_chart_repository), var.helm_charts.mongodb.repository)
helm_chart_version = try(coalesce(var.mongodb.helm_chart_version), var.helm_charts.mongodb.version)
mongodb_resources = var.mongodb.mongodb_resources
arbiter_resources = var.mongodb.arbiter_resources
}
mongodb_resources = var.mongodb.mongodb_resources
arbiter_resources = var.mongodb.arbiter_resources
persistent_volume = null
}

Expand Down

0 comments on commit 7f8f43d

Please sign in to comment.