Skip to content

v0.2.0

Compare
Choose a tag to compare
@tesharp tesharp released this 21 Sep 23:13
· 50 commits to master since this release

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.