forked from squareops/terraform-kubernetes-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
17 lines (16 loc) · 1002 Bytes
/
output.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
output "mongodb_endpoints" {
description = "MongoDB endpoints in the Kubernetes cluster."
value = {
mongoport = "27017",
mongodb_endpoint = "mongodb-headless.${var.namespace}.svc.cluster.local"
}
}
output "mongodb_credential" {
description = "MongoDB credentials used for accessing the MongoDB database."
value = var.mongodb_config.store_password_to_secret_manager ? null : {
root_user = var.mongodb_custom_credentials_enabled ? var.mongodb_custom_credentials_config.root_user : "root",
root_password = var.mongodb_custom_credentials_enabled ? var.mongodb_custom_credentials_config.root_password : var.root_password,
metric_exporter_user = var.mongodb_custom_credentials_enabled ? var.mongodb_custom_credentials_config.metric_exporter_user : "mongodb_exporter",
metric_exporter_password = var.mongodb_custom_credentials_enabled ? var.mongodb_custom_credentials_config.metric_exporter_password : var.metric_exporter_password
}
}