Skip to content

Commit

Permalink
Feature/delete dbs (#178)
Browse files Browse the repository at this point in the history
* managed_database_host variable

* Add managed_database_host output.

Co-authored-by: Raj Poluri <[email protected]>
  • Loading branch information
rpoluri and Raj Poluri authored Nov 6, 2020
1 parent 374bb8d commit 793b07d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [6.6.1] - 2020-11-06
### Added
- Add managed_database_host output.

## [6.6.0] - 2020-10-30
### Added
- Configure bucket ownership controls on apiary managed buckets,cross account object writes will be owned by bucket instead of writer.
Expand Down
4 changes: 4 additions & 0 deletions ouputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ output "hms_readonly_load_balancers" {
output "hms_readwrite_load_balancers" {
value = var.hms_instance_type == "k8s" ? kubernetes_service.hms_readwrite[0].load_balancer_ingress.*.hostname : []
}

output "managed_database_host" {
value = var.external_database_host == "" ? join("", aws_rds_cluster.apiary_cluster.*.endpoint) : ""
}

0 comments on commit 793b07d

Please sign in to comment.