renovate/lib/manager/terragrunt
2021-03-13 14:28:46 +01:00
..
__fixtures__ feat: terragrunt support (#7653) 2020-11-12 16:37:15 +01:00
__snapshots__ refactor: Remove depnameShort of terra* and kustomize (#8388) 2021-02-05 11:58:22 +01:00
extract.spec.ts feat: terragrunt support (#7653) 2020-11-12 16:37:15 +01:00
extract.ts refactor: optimize type usage (#8947) 2021-03-02 21:44:55 +01:00
index.ts refactor: remove depNameShort (#9114) 2021-03-13 14:28:46 +01:00
modules.ts refactor: optimize type usage (#8947) 2021-03-02 21:44:55 +01:00
providers.ts refactor: optimize type usage (#8947) 2021-03-02 21:44:55 +01:00
readme.md docs: lint 2021-03-09 23:21:38 +01:00
util.spec.ts feat: terragrunt support (#7653) 2020-11-12 16:37:15 +01:00
util.ts refactor: optimize type usage (#8947) 2021-03-02 21:44:55 +01:00

Currently by default, Terragrunt support is limited to Terraform registry sources and GitHub sources that include SemVer refs, e.g. like github.com/hashicorp/example?ref=v1.0.0.

You can create a custom versioning config to support non-SemVer references. For example, if you want to reference a tag like module-v1.2.5, a block like this would work:

"terraform": {
 "versioning": "regex:^((?<compatibility>.*)-v|v*)(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$"
}

Pinned Terragrunt dependencies like the following will receive a PR whenever there is a newer version available:

terraform {
  source = "github.com/hashicorp/example?ref=v1.0.0"
}