Skip to content

Commit

Permalink
feat: add output engine_version to force provider order (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
jurgenweber authored Oct 13, 2020
1 parent 61f360c commit 9620cb3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ Terraform documentation is generated automatically using [pre-commit hooks](http
| this\_rds\_cluster\_arn | The ID of the cluster |
| this\_rds\_cluster\_database\_name | Name for an automatically created database on cluster creation |
| this\_rds\_cluster\_endpoint | The cluster endpoint |
| this\_rds\_cluster\_engine_version | The cluster engine version |
| this\_rds\_cluster\_hosted\_zone\_id | Route53 hosted zone id of the created cluster |
| this\_rds\_cluster\_id | The ID of the cluster |
| this\_rds\_cluster\_instance\_endpoints | A list of all cluster instance endpoints |
Expand Down
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ output "this_rds_cluster_endpoint" {
value = aws_rds_cluster.this.endpoint
}

output "this_rds_cluster_engine_version" {
description = "The cluster engine version"
value = aws_rds_cluster.this.engine_version
}

output "this_rds_cluster_reader_endpoint" {
description = "The cluster reader endpoint"
value = aws_rds_cluster.this.reader_endpoint
Expand Down

0 comments on commit 9620cb3

Please sign in to comment.