Skip to content

Latest commit

 

History

History
66 lines (44 loc) · 1.86 KB

CHANGELOG.md

File metadata and controls

66 lines (44 loc) · 1.86 KB

0.5.2 (09. March 2021)

  • Fix possible race condition in use og go-cmd
  • Terraform 0.12.10
  • Upgraded to go 1.15

0.5.1 (14. April 2020)

  • Upgraded to go 1.14
  • Fixed issue #26 Fail if module does not exist

0.5.0 (12. March 2020)

  • Added --destroy option for plan command to create plan to destroy all resources
  • Use go-cmd dependency instead of forked version

0.4.0 (02. November 2019)

  • Running auto init by default. If module has not been initialized before running plan or similar commands it will initialize it automatically. Can be turned off with --no-auto-init flag.
  • Support to destroy resources if files start with DESTROY or DELETE

0.3.0 (16. October 2019)

  • Added tau fmt command to format tau files
  • Fixed execution order. Could sometimes execute dependencies too late.
  • Support for defining -f multiple times to load many files / folders at same time

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

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

kubernetes.hcl

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

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.