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 1df88dc commit eb71751Copy full SHA for eb71751
examples/basic/outputs.tf
@@ -36,3 +36,13 @@ output "certificate_base64" {
36
value = module.database.certificate_base64
37
sensitive = true
38
}
39
+
40
+output "read_replica_ids" {
41
+ description = "Read-only replica Postgresql instance IDs"
42
+ value = module.read_only_replica_postgresql_db[*].id
43
+}
44
45
+output "read_replica_crns" {
46
+ description = "Read-only replica Postgresql CRNs"
47
+ value = module.read_only_replica_postgresql_db[*].crn
48
0 commit comments