Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,7 @@ brews:
type: optional
- name: kubectl
type: optional
- name: wget
type: optional
test: |
system "#{bin}/zero version"
10 changes: 9 additions & 1 deletion cmd/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ var checkCmd = &cobra.Command{
command: "terraform",
args: []string{"version"},
regexStr: `Terraform v(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)`,
minVersion: "0.12.0",
minVersion: "0.13.0",
docsURL: "https://www.terraform.io/downloads.html",
},
{
Expand All @@ -143,6 +143,14 @@ var checkCmd = &cobra.Command{
minVersion: "2.17.1",
docsURL: "https://git-scm.com/book/en/v2/Getting-Started-Installing-Git",
},
{
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you also bump the terraform to 0.13 please, the EKS stack's terraforms are now using some 0.13 features

name: "Wget\t\t",
command: "wget",
args: []string{"--version"},
regexStr: `^GNU Wget (0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)`,
minVersion: "1.14.0",
docsURL: "https://www.gnu.org/software/wget/",
},
}

// Store and errors from the commands we run.
Expand Down