(From #172)
To ensure consistent versioning across a team, please provide a way to specify the minimum Terragrunt version within configuration.
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.
Most helpful comment
@brikis98 What about just the following with
_constraint?I think that reads better.