Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions src/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@ output "replicas_hostname" {
description = "Postgres replicas hostname"
}

output "cluster_endpoint" {
value = module.aurora_postgres_cluster.endpoint
description = "Postgres cluster endpoint"
}

output "reader_endpoint" {
value = module.aurora_postgres_cluster.reader_endpoint
description = "Postgres reader endpoint"
}

output "instance_endpoints" {
value = module.aurora_postgres_cluster.instance_endpoints
description = "List of Postgres instance endpoints"
}

output "cluster_identifier" {
value = module.aurora_postgres_cluster.cluster_identifier
description = "Postgres cluster identifier"
Expand Down
Loading