Skip to content

Commit eb71751

Browse files
authored
test: addedoutput for read replicas (#726)
1 parent 1df88dc commit eb71751

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

examples/basic/outputs.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,13 @@ output "certificate_base64" {
3636
value = module.database.certificate_base64
3737
sensitive = true
3838
}
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

Comments
 (0)