From bc97b4ebd7b374944356e5eb949b7aa95e7e83d7 Mon Sep 17 00:00:00 2001 From: jakobbraun Date: Tue, 8 Dec 2020 11:21:42 +0100 Subject: [PATCH] #18: Fixed the outputs (#19) * #18: Fixed the outputs --- .gitignore | 1 + doc/changes/changelog.md | 2 +- doc/changes/changes_0.1.0.md | 5 ----- doc/changes/changes_1.0.0.md | 8 ++++++++ outputs.tf | 6 +++--- 5 files changed, 13 insertions(+), 9 deletions(-) delete mode 100644 doc/changes/changes_0.1.0.md create mode 100644 doc/changes/changes_1.0.0.md diff --git a/.gitignore b/.gitignore index 775e40a..b793cda 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ terraform.tfplan terraform.tfstate .idea/ *.iml +.terraform.lock.hcl diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index c541a03..19db977 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -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) \ No newline at end of file diff --git a/doc/changes/changes_0.1.0.md b/doc/changes/changes_0.1.0.md deleted file mode 100644 index 98f26f9..0000000 --- a/doc/changes/changes_0.1.0.md +++ /dev/null @@ -1,5 +0,0 @@ -# terraform-aws-exasol 0.0.2, released 2020-XX-XX - -## Bugfixes - -* #13: The setup assigned wrong tags to ec2 instances \ No newline at end of file diff --git a/doc/changes/changes_1.0.0.md b/doc/changes/changes_1.0.0.md new file mode 100644 index 0000000..772707f --- /dev/null +++ b/doc/changes/changes_1.0.0.md @@ -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 \ No newline at end of file diff --git a/outputs.tf b/outputs.tf index da10647..048ae45 100644 --- a/outputs.tf +++ b/outputs.tf @@ -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 }