Skip to content

v0.4.0-beta.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@pst pst released this 16 Jun 12:36
· 494 commits to master since this release
ed2462d
  • No changes to clusters compared to v0.3.0-beta.0
  • Upgrades syntax to Terraform 0.12

Upgrade Notes

This release changes the upstream modules to the new Terraform 0.12 configuration language syntax. Likewise, repositories bootstrapped from the quickstart, need to be updated aswell. There are two small changes required.

  1. Change configuration variable syntax in clusters.tf like in the example below:
    -  configuration = "${var.clusters["eks_zero"]}"
    +  configuration = var.clusters["eks_zero"]
    
  2. Update the variable type definition in variables.tf like in the example below:
    -  type        = "map"
    +  type        = map(map(map(string)))
    

Last but not least, remember to upgrade the Terraform version in the Dockerfile. Depending on when you bootstrapped your repository, there may be additional changes in that Dockerfile worth copying.