Skip to content

Commit

Permalink
Added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
tesharp committed Sep 21, 2019
1 parent 7a0ecce commit c414fb8
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## 0.2.0 (22. September 2019)

Improved merging of blocks. Previously map attributes in inputs block with same name would cause an error with duplicate attributes. With this release it will merge the maps together.

`common_auto.hcl`

```terraform
inputs {
tags = {
costCenter = "IT"
resource = "Kubernetes"
}
}
```

`kubernetes.hcl`

```terraform
inputs {
tags = {
responsible = "noreply@email.com"
}
}
```

Merging these 2 files together will now result in a map with `costCenter`, `resource` and `responsible` all defined.

FEATURES:

* Support merging items in input maps together [#13](https://github.com/avinor/tau/issues/13)

IMPROVEMENTS:

* Checks that `environment_variables` are not maps or lists
* Improved merging of `backend`, `environment_variables` and `inputs`.

## 0.1.0 (18. September 2019)

First release that can be used for deployments in pipeline. This is still a bit work in progress, but stable enough to include in deployments scripts.

0 comments on commit c414fb8

Please sign in to comment.