-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bt: Terraform checks have extra env vars exported and can run from pa…
…rallel stack components Checks can also save output to a file.
- Loading branch information
1 parent
ae9f763
commit f6ad98a
Showing
9 changed files
with
166 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,33 @@ | ||
module github.com/DavidGamba/dgtools/bt | ||
|
||
go 1.22 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/DavidGamba/dgtools/buildutils v0.4.0 | ||
github.com/DavidGamba/dgtools/cueutils v0.0.0-20240619042954-1fe1b59646dd | ||
github.com/DavidGamba/dgtools/fsmodtime v0.2.0 | ||
github.com/DavidGamba/dgtools/buildutils v0.6.0 | ||
github.com/DavidGamba/dgtools/cueutils v0.0.0-20240905043238-7cc0ae242d0a | ||
github.com/DavidGamba/dgtools/fsmodtime v0.3.0 | ||
github.com/DavidGamba/dgtools/run v0.9.0 | ||
github.com/DavidGamba/go-getoptions v0.30.0 | ||
github.com/hashicorp/terraform-config-inspect v0.0.0-20240607080351-271db412dbcb | ||
github.com/hashicorp/terraform-config-inspect v0.0.0-20240801114854-6714b46f5fe4 | ||
github.com/mattn/go-isatty v0.0.20 | ||
) | ||
|
||
require ( | ||
cuelang.org/go v0.9.1 // indirect | ||
cuelang.org/go v0.10.0 // indirect | ||
github.com/agext/levenshtein v1.2.3 // indirect | ||
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect | ||
github.com/cockroachdb/apd/v3 v3.2.1 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/hcl/v2 v2.20.1 // indirect | ||
github.com/hashicorp/hcl/v2 v2.22.0 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/zclconf/go-cty v1.14.4 // indirect | ||
golang.org/x/mod v0.18.0 // indirect | ||
golang.org/x/net v0.26.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
golang.org/x/tools v0.22.0 // indirect | ||
github.com/zclconf/go-cty v1.15.0 // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/net v0.29.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
golang.org/x/tools v0.25.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters