forked from guyelia/terraform-aws-mongodbatlas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
49 lines (40 loc) · 1.68 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
output "cluster_id" {
value = mongodbatlas_cluster.cluster.cluster_id
description = "The cluster ID"
}
output "mongo_db_version" {
value = mongodbatlas_cluster.cluster.mongo_db_version
description = "Version of MongoDB the cluster runs, in major-version.minor-version format"
}
output "mongo_uri" {
value = mongodbatlas_cluster.cluster.mongo_uri
description = "Base connection string for the cluster"
}
output "mongo_uri_updated" {
value = mongodbatlas_cluster.cluster.mongo_uri_updated
description = "Lists when the connection string was last updated"
}
output "mongo_uri_with_options" {
value = mongodbatlas_cluster.cluster.mongo_uri_with_options
description = "connection string for connecting to the Atlas cluster. Includes the replicaSet, ssl, and authSource query parameters in the connection string with values appropriate for the cluster"
}
output "connection_strings" {
value = mongodbatlas_cluster.cluster.connection_strings
description = "Set of connection strings that your applications use to connect to this cluster"
}
output "container_id" {
value = mongodbatlas_cluster.cluster.container_id
description = "The Network Peering Container ID"
}
output "paused" {
value = mongodbatlas_cluster.cluster.paused
description = "Flag that indicates whether the cluster is paused or not"
}
output "srv_address" {
value = mongodbatlas_cluster.cluster.srv_address
description = "Connection string for connecting to the Atlas cluster. The +srv modifier forces the connection to use TLS/SSL"
}
output "state_name" {
value = mongodbatlas_cluster.cluster.state_name
description = "Current state of the cluster"
}