In a project I am working on we have a module like this:
module "module-name" {
source = "https://github.com/some/repo/releases/download/v0.1.7/filename.zip"
...
}
Currently when ever there is a release in https://github.com/some/repo/
we have to manually come and update the version string. Is there a way to make the source to just pull the latest release?