Skip to content

Commit

Permalink
#18: Fixed the outputs (#19)
Browse files Browse the repository at this point in the history
* #18: Fixed the outputs
  • Loading branch information
jakobbraun authored Dec 8, 2020
1 parent 87595d3 commit bc97b4e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ terraform.tfplan
terraform.tfstate
.idea/
*.iml
.terraform.lock.hcl
2 changes: 1 addition & 1 deletion doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes

* [0.1.0](changes_0.1.0.md)
* [0.1.0](changes_1.0.0.md)
* [0.0.2](changes_0.0.2.md)
* [0.0.1](changes_0.0.1.md)
5 changes: 0 additions & 5 deletions doc/changes/changes_0.1.0.md

This file was deleted.

8 changes: 8 additions & 0 deletions doc/changes/changes_1.0.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# terraform-aws-exasol 1.0.0, released 2020-12-08

Code name: Fixed instance tags and outputs

## Bugfixes

* #13: The setup assigned wrong tags to ec2 instances
* #18: Fixed the outputs
6 changes: 3 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

output "management_server_ip" {
value = "data.aws_instance.management_server.public_ip"
value = data.aws_instance.management_server.public_ip
}

output "first_datanode_ip" {
value = "data.aws_instance.exasol_first_datanode.public_ip"
value = data.aws_instance.exasol_first_datanode.public_ip
}

output "exasol_waited_on" {
value = "null_resource.exasol_waited_on.id"
value = null_resource.exasol_waited_on.id
}

0 comments on commit bc97b4e

Please sign in to comment.