Terragrunt: Ensure minimum Terragrunt version

Created on 24 Apr 2017  路  5Comments  路  Source: gruntwork-io/terragrunt

(From #172)

To ensure consistent versioning across a team, please provide a way to specify the minimum Terragrunt version within configuration.

enhancement help wanted

Most helpful comment

@brikis98 What about just the following with _constraint?

terragrunt = {
  terragrunt_version = ">= 0.12.0"
  terraform_version = ">= 0.9.3"
}

I think that reads better.

All 5 comments

Thanks!

Probably the best way to handle this is with two new settings in the Terragrunt configuration:

terragrunt = {
  terragrunt_version_constraint = ">= 0.12.0"
  terraform_version_constraint = ">= 0.9.3"
}

@brikis98 What about just the following with _constraint?

terragrunt = {
  terragrunt_version = ">= 0.12.0"
  terraform_version = ">= 0.9.3"
}

I think that reads better.

Agreed, that's cleaner.

Was this page helpful?
0 / 5 - 0 ratings