We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f2e65d commit 7485923Copy full SHA for 7485923
outputs.tf
@@ -29,6 +29,11 @@ output "reader_endpoint" {
29
description = "A read-only endpoint of the DocumentDB cluster, automatically load-balanced across replicas"
30
}
31
32
+output "cluster_members" {
33
+ value = flatten(aws_docdb_cluster.default[*].cluster_members)
34
+ description = "List of DocumentDB Instances that are a part of this cluster"
35
+}
36
+
37
output "master_host" {
38
value = module.dns_master.hostname
39
description = "DB master hostname"
0 commit comments