Skip to content

Commit

Permalink
Update Terragrunt Version & Bump Patch Version (#34)
Browse files Browse the repository at this point in the history
Updates Terragrunt Version in Go mod, in order to support `sops_decrypt_file`
to encrypt/decrypt sensitive data in your git repo.
This has been introduced to the
[v0.23.18](https://github.com/gruntwork-io/terragrunt/releases/tag/v0.23.18)
but this PR updates Terragrunt to the latest current version.
  • Loading branch information
angeloskaltsikis authored Jul 7, 2020
1 parent ea78502 commit 53658ea
Show file tree
Hide file tree
Showing 4 changed files with 352 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=0.4.3
VERSION=0.4.4
PATH_BUILD=build/
FILE_COMMAND=terragrunt-atlantis-config
FILE_ARCH=darwin_amd64
Expand Down Expand Up @@ -33,4 +33,4 @@ publish: build
AWS_PROFILE=$(PROFILE) aws s3 sync $(PATH_BUILD)/$(VERSION) s3://$(S3_BUCKET_NAME)/$(FILE_COMMAND)/$(VERSION)

ci_publish: build
aws s3 sync $(PATH_BUILD)$(VERSION) s3://$(S3_BUCKET_NAME)/$(FILE_COMMAND)/$(VERSION)
aws s3 sync $(PATH_BUILD)$(VERSION) s3://$(S3_BUCKET_NAME)/$(FILE_COMMAND)/$(VERSION)
47 changes: 42 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,55 @@ module github.com/transcend-io/terragrunt-atlantis-config
go 1.14

require (
cloud.google.com/go v0.60.0 // indirect
cloud.google.com/go/storage v1.10.0 // indirect
github.com/Azure/azure-sdk-for-go v44.0.0+incompatible // indirect
github.com/Azure/go-autorest/autorest/azure/auth v0.5.0 // indirect
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
github.com/Azure/go-autorest/autorest/validation v0.3.0 // indirect
github.com/agext/levenshtein v1.2.3 // indirect
github.com/aws/aws-sdk-go v1.33.2 // indirect
github.com/bmatcuk/doublestar v1.3.1 // indirect
github.com/creack/pty v1.1.11 // indirect
github.com/debber/debber-v0.3 v0.0.0-20160226200915-cf10fd052975 // indirect
github.com/docker/docker v1.4.2-0.20190924003213-a8608b5b67c7
github.com/docker/go-metrics v0.0.1 // indirect
github.com/ghodss/yaml v1.0.0
github.com/gruntwork-io/terragrunt v0.23.4
github.com/hashicorp/hcl/v2 v2.3.0
github.com/go-errors/errors v1.1.1 // indirect
github.com/gruntwork-io/terragrunt v0.23.31
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/hashicorp/go-version v1.2.1 // indirect
github.com/hashicorp/hcl/v2 v2.6.0
github.com/hashicorp/hcl2 v0.0.0-20191002203319-fb75b3253c80
github.com/hashicorp/terraform v0.12.28 // indirect
github.com/hashicorp/terraform-svchost v0.0.0-20191119180714-d2e4933b9136 // indirect
github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c // indirect
github.com/laher/argo v0.0.0-20140722103944-11d91c83cc0f // indirect
github.com/laher/goxc v0.18.1 // indirect
github.com/sirupsen/logrus v1.5.0
github.com/lib/pq v1.7.0 // indirect
github.com/mattn/go-colorable v0.1.7 // indirect
github.com/mattn/go-zglob v0.0.2 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/mapstructure v1.3.2 // indirect
github.com/sirupsen/logrus v1.6.0
github.com/spf13/cobra v0.0.5
github.com/zclconf/go-cty v1.3.1
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
github.com/stretchr/testify v1.6.1 // indirect
github.com/ulikunitz/xz v0.5.7 // indirect
github.com/urfave/cli v1.22.4 // indirect
github.com/zclconf/go-cty v1.5.1
github.com/zclconf/go-cty-yaml v1.0.2 // indirect
go.opencensus.io v0.22.4 // indirect
golang.org/x/exp v0.0.0-20200513190911-00229845015e // indirect
golang.org/x/net v0.0.0-20200707034311-ab3426394381 // indirect
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
golang.org/x/text v0.3.3 // indirect
golang.org/x/tools v0.0.0-20200706234117-b22de6825cf7 // indirect
google.golang.org/genproto v0.0.0-20200707001353-8e8330bf89df // indirect
google.golang.org/grpc v1.30.0 // indirect
gopkg.in/ini.v1 v1.57.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect
gotest.tools/gotestsum v0.4.2 // indirect
)
Loading

0 comments on commit 53658ea

Please sign in to comment.