From 88c2f7746b651e33bbb9026b8a9fbc48730e9358 Mon Sep 17 00:00:00 2001 From: David Mattia Date: Fri, 19 Mar 2021 13:35:01 -0500 Subject: [PATCH] update to v1.2.1 (#125) --- Makefile | 2 +- README.md | 5 +++-- main.go | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 5fc25a58..4b68c2da 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=1.2.0 +VERSION=1.2.1 PATH_BUILD=build/ FILE_COMMAND=terragrunt-atlantis-config FILE_ARCH=darwin_amd64 diff --git a/README.md b/README.md index 34407e72..9d7ba4d6 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Then, make sure `terragrunt-atlantis-config` is present on your Atlantis server. ```hcl variable "terragrunt_atlantis_config_version" { - default = "1.2.0" + default = "1.2.1" } build { @@ -128,6 +128,7 @@ One way to customize the behavior of this module is through CLI flag values pass | `--root` | Path to the root directory of the git repo you want to build config for. | current directory | | `--terraform-version` | Default terraform version to specify for all modules. Can be overriden by locals | "" | | `--ignore-dependency-blocks` | When true, dependencies found in `dependency` and `dependencies` blocks will be ignored | false | +| `--filter` | Path to the directory you want scope down the config for. Default is all files in root | "" | ## All Locals @@ -167,7 +168,7 @@ You can install this tool locally to checkout what kinds of config it will gener Recommended: Install any version via go get: ```bash -cd && GO111MODULE=on go get github.com/transcend-io/terragrunt-atlantis-config@v1.2.0 && cd - +cd && GO111MODULE=on go get github.com/transcend-io/terragrunt-atlantis-config@v1.2.1 && cd - ``` This module officially supports golang versions v1.13, v1.14, and v1.15, tested on CircleCI with each build diff --git a/main.go b/main.go index 7a27fe45..1d792f8a 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,7 @@ import "github.com/transcend-io/terragrunt-atlantis-config/cmd" // This variable is set at build time using -ldflags parameters. // But we still set a default here for those using plain `go get` downloads // For more info, see: http://stackoverflow.com/a/11355611/483528 -var VERSION string = "1.2.0" +var VERSION string = "1.2.1" func main() { cmd.Execute(VERSION)