Skip to content

Commit

Permalink
#13: The setup assigned wrong tags to ec2 instances (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobbraun authored Nov 30, 2020
1 parent 6846418 commit 87595d3
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 15 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Exasol AWS Terraform Module

<img alt="terraform-aws-exasol logo" src="docs/images/terraform-aws-exasol_128x128.png" style="float:left; padding:0px 10px 10px 10px;"/>
<img alt="terraform-aws-exasol logo" src="doc/images/terraform-aws-exasol_128x128.png" style="float:left; padding:0px 10px 10px 10px;"/>

[![Build Status][travis-badge]][travis-link]
[![GitHub Latest Release][gh-release-badge]][gh-release-link]
Expand Down Expand Up @@ -191,6 +191,8 @@ The following configuration variables are available.

Please see [CONTRIBUTING.md](CONTRIBUTING.md) for contribution guidelines.

[changelog](doc/changes/changelog.md)

[travis-badge]: https://travis-ci.com/exasol/terraform-aws-exasol.svg?branch=master
[travis-link]: https://travis-ci.com/exasol/terraform-aws-exasol
[gh-release-badge]: https://img.shields.io/github/tag/exasol/terraform-aws-exasol.svg?label=latest
Expand Down
5 changes: 5 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changes

* [0.1.0](changes_0.1.0.md)
* [0.0.2](changes_0.0.2.md)
* [0.0.1](changes_0.0.1.md)
10 changes: 10 additions & 0 deletions doc/changes/changes_0.0.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# terraform-aws-exasol 0.0.1, released 2019-09-09

## Summary

This is first release version which includes initial setup of project for
continued improvements.

* Initial working version (with limited input variables)
* Build script (`./scripts/ci.sh`) with linting and formatting
* Travis CI based continuous build process
17 changes: 3 additions & 14 deletions CHANGES.md → doc/changes/changes_0.0.2.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## v0.0.2
# terraform-aws-exasol 0.0.2, released 2020-01-21

> 2020 JAN 21
## Summary

* Updates to the latest cloudformation template.
[#2](https://github.com/exasol/terraform-aws-exasol/issues/2)
Expand All @@ -19,15 +19,4 @@
- Updates `tflint` version to `v0.13.4`.

* Adds variable for license file path in order to use with Bring Your Own (BYOL)
Exasol machine images.

## v0.0.1

> 2019 SEP 09
This is first release version which includes initial setup of project for
continued improvements.

* Initial working version (with limited input variables)
* Build script (`./scripts/ci.sh`) with linting and formatting
* Travis CI based continuous build process
Exasol machine images.
5 changes: 5 additions & 0 deletions doc/changes/changes_0.1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# terraform-aws-exasol 0.0.2, released 2020-XX-XX

## Bugfixes

* #13: The setup assigned wrong tags to ec2 instances
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ resource "aws_cloudformation_stack" "exasol_cluster" {
CreateEC2Endpoint = var.create_ec2_endpoint
OpenPorts = var.open_ports
License = var.license == null ? null : file(var.license)
OwnerTag = var.owner
ProjectTag = var.project
}

tags = {
Expand Down

0 comments on commit 87595d3

Please sign in to comment.