terraform-module-versions
terraform-module-versions copied to clipboard
CLI tool that checks Terraform code for module updates. Single binary, no dependencies. linux, osx, windows. #golang #cli #terraform
This issue lists Renovate updates and detected dependencies. Read the [Dependency Dashboard](https://docs.renovatebot.com/key-concepts/dashboard/) docs to learn more. ## Open These updates have all been created already. Click a checkbox below to...
It would be nice to `brew install` this. At the moment I'm using ``` go install github.com/keilerkonzept/terraform-module-versions@latest ``` ``` $ which terraform-module-versions /Users/user/go/bin/terraform-module-versions ``` or ``` wget -c https://github.com/keilerkonzept/terraform-module-versions/releases/download/3.1.11/terraform-module-versions_3.1.11_osx_x86_64.tar.gz -O...
It would be nice to show not only the module name but also the module source ✗ terraform-module-versions check -pre-release=false . | UPDATE? | NAME | SOURCE | CONSTRAINT |...
Just a very quick proof of concept for adding pessimistic version constraint support. https://www.terraform.io/language/expressions/version-constraints#-3
I was expecting this to be able to recurse through the directory tree and tell me about all my modules. :(
Some of the version releases have very little information in them. It would be nice to show detailed information on what has changed. It may be easier to keep a...
Currently, if a local module uses another module that is sourced from Github or the Registry, it is not shown in the list of outdated modules. This PR adds another...
Terraform Cloud supports the use of monorepos with multiple workspaces. It would be nice if the tool can recursively scan a monorepo and yield per workspace and also an accumulated...
It could be interesting to include terragrunt.hcl files to the version check. Terragrunt files have the following terraform configuration block (this is an example): terraform { source = "[email protected]:terraform-aws-modules/terraform-aws-iam.git//modules/iam-assumable-roles?ref=v2.21.0" }...