Skip to content

Commit

Permalink
fix: bad MongoDB module calls in localhost and GCP
Browse files Browse the repository at this point in the history
  • Loading branch information
tschneider-aneo committed Aug 30, 2024
1 parent 00ea1b3 commit 753581c
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 753581c

Please sign in to comment.