diff --git a/.github/aur/flux-go/PKGBUILD.template b/.github/aur/flux-go/PKGBUILD.template index f9082627..b92e3a3d 100644 --- a/.github/aur/flux-go/PKGBUILD.template +++ b/.github/aur/flux-go/PKGBUILD.template @@ -12,7 +12,7 @@ provides=("flux-bin") conflicts=("flux-bin") replaces=("flux-cli") depends=("glibc") -makedepends=('go>=1.16', 'kustomize>=3.0') +makedepends=('go>=1.17', 'kustomize>=3.0') optdepends=('bash-completion: auto-completion for flux in Bash', 'zsh-completions: auto-completion for flux in ZSH') source=( diff --git a/.github/aur/flux-scm/PKGBUILD.template b/.github/aur/flux-scm/PKGBUILD.template index c22a5c6e..5fc39135 100644 --- a/.github/aur/flux-scm/PKGBUILD.template +++ b/.github/aur/flux-scm/PKGBUILD.template @@ -11,7 +11,7 @@ license=("APACHE") provides=("flux-bin") conflicts=("flux-bin") depends=("glibc") -makedepends=('go>=1.16', 'kustomize>=3.0') +makedepends=('go>=1.17', 'kustomize>=3.0') optdepends=('bash-completion: auto-completion for flux in Bash', 'zsh-completions: auto-completion for flux in ZSH') source=( diff --git a/.github/workflows/bootstrap.yaml b/.github/workflows/bootstrap.yaml index 5b2f9666..b20c2669 100644 --- a/.github/workflows/bootstrap.yaml +++ b/.github/workflows/bootstrap.yaml @@ -17,13 +17,13 @@ jobs: uses: actions/cache@v1 with: path: ~/go/pkg/mod - key: ${{ runner.os }}-go1.16-${{ hashFiles('**/go.sum') }} + key: ${{ runner.os }}-go1.17-${{ hashFiles('**/go.sum') }} restore-keys: | - ${{ runner.os }}-go1.16- + ${{ runner.os }}-go1.17- - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.16.x + go-version: 1.17.x - name: Setup Kubernetes uses: engineerd/setup-kind@v0.5.0 with: diff --git a/.github/workflows/e2e-arm64.yaml b/.github/workflows/e2e-arm64.yaml index 8f219adc..5855e30b 100644 --- a/.github/workflows/e2e-arm64.yaml +++ b/.github/workflows/e2e-arm64.yaml @@ -16,7 +16,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.16.x + go-version: 1.17.x - name: Prepare id: prep run: | diff --git a/.github/workflows/e2e-azure.yaml b/.github/workflows/e2e-azure.yaml index d5dbd31e..75abf7ef 100644 --- a/.github/workflows/e2e-azure.yaml +++ b/.github/workflows/e2e-azure.yaml @@ -17,13 +17,13 @@ jobs: uses: actions/cache@v1 with: path: ~/go/pkg/mod - key: ${{ runner.os }}-go1.16-${{ hashFiles('**/go.sum') }} + key: ${{ runner.os }}-go1.17-${{ hashFiles('**/go.sum') }} restore-keys: | - ${{ runner.os }}-go1.16- + ${{ runner.os }}-go1.17- - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.16.x + go-version: 1.17.x - name: Install libgit2 run: | sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 648ACFD622F3D138 diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index dbcfe82c..83e6eb56 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -16,13 +16,13 @@ jobs: uses: actions/cache@v1 with: path: ~/go/pkg/mod - key: ${{ runner.os }}-go1.16-${{ hashFiles('**/go.sum') }} + key: ${{ runner.os }}-go1.17-${{ hashFiles('**/go.sum') }} restore-keys: | - ${{ runner.os }}-go1.16- + ${{ runner.os }}-go1.17- - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.16.x + go-version: 1.17.x - name: Setup Kubernetes uses: engineerd/setup-kind@v0.5.0 with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6c599da5..dd50db0b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,7 +15,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.16.x + go-version: 1.17.x - name: Setup QEMU uses: docker/setup-qemu-action@v1 with: diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml index 5c310446..bb815fdd 100644 --- a/.github/workflows/update.yaml +++ b/.github/workflows/update.yaml @@ -16,7 +16,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.16.x + go-version: 1.17.x - name: Update component versions id: update run: | diff --git a/Dockerfile b/Dockerfile index 438dbac6..7517c500 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.14 as builder +FROM alpine:3.15 as builder RUN apk add --no-cache ca-certificates curl @@ -9,7 +9,7 @@ RUN curl -sL https://storage.googleapis.com/kubernetes-release/release/v${KUBECT -o /usr/local/bin/kubectl && chmod +x /usr/local/bin/kubectl && \ kubectl version --client=true -FROM alpine:3.14 as flux-cli +FROM alpine:3.15 as flux-cli # Create minimal nsswitch.conf file to prioritize the usage of /etc/hosts over DNS queries. # https://github.com/gliderlabs/docker-alpine/issues/367#issuecomment-354316460 diff --git a/cmd/flux/check_test.go b/cmd/flux/check_test.go index 8ae39b1b..e6374535 100644 --- a/cmd/flux/check_test.go +++ b/cmd/flux/check_test.go @@ -1,3 +1,4 @@ +//go:build e2e // +build e2e /* diff --git a/cmd/flux/create_source_git_test.go b/cmd/flux/create_source_git_test.go index 943cbff3..1b391bce 100644 --- a/cmd/flux/create_source_git_test.go +++ b/cmd/flux/create_source_git_test.go @@ -1,3 +1,4 @@ +//go:build unit // +build unit /* diff --git a/cmd/flux/export_test.go b/cmd/flux/export_test.go index 74b9bf5d..dc59caa2 100644 --- a/cmd/flux/export_test.go +++ b/cmd/flux/export_test.go @@ -1,3 +1,4 @@ +//go:build unit // +build unit package main diff --git a/cmd/flux/helmrelease_test.go b/cmd/flux/helmrelease_test.go index 64f5c164..dcb9ff58 100644 --- a/cmd/flux/helmrelease_test.go +++ b/cmd/flux/helmrelease_test.go @@ -1,3 +1,4 @@ +//go:build e2e // +build e2e /* diff --git a/cmd/flux/image_test.go b/cmd/flux/image_test.go index 1ac0779f..a0e0b257 100644 --- a/cmd/flux/image_test.go +++ b/cmd/flux/image_test.go @@ -1,3 +1,4 @@ +//go:build e2e // +build e2e package main diff --git a/cmd/flux/kustomization_test.go b/cmd/flux/kustomization_test.go index e997e451..f2a16fb0 100644 --- a/cmd/flux/kustomization_test.go +++ b/cmd/flux/kustomization_test.go @@ -1,3 +1,4 @@ +//go:build e2e // +build e2e /* diff --git a/cmd/flux/logs_test.go b/cmd/flux/logs_test.go index 213e789f..9355e37b 100644 --- a/cmd/flux/logs_test.go +++ b/cmd/flux/logs_test.go @@ -1,3 +1,4 @@ +//go:build unit // +build unit /* diff --git a/cmd/flux/main_e2e_test.go b/cmd/flux/main_e2e_test.go index 7cd6bfa2..20a51c5f 100644 --- a/cmd/flux/main_e2e_test.go +++ b/cmd/flux/main_e2e_test.go @@ -1,3 +1,4 @@ +//go:build e2e // +build e2e /* diff --git a/cmd/flux/main_unit_test.go b/cmd/flux/main_unit_test.go index 605b204c..8d3e6398 100644 --- a/cmd/flux/main_unit_test.go +++ b/cmd/flux/main_unit_test.go @@ -1,3 +1,4 @@ +//go:build unit // +build unit /* diff --git a/cmd/flux/trace_test.go b/cmd/flux/trace_test.go index 943c6bd7..fc496de0 100644 --- a/cmd/flux/trace_test.go +++ b/cmd/flux/trace_test.go @@ -1,3 +1,4 @@ +//go:build unit // +build unit package main diff --git a/cmd/flux/tree_kustomization_test.go b/cmd/flux/tree_kustomization_test.go index be5ce57e..045b869b 100644 --- a/cmd/flux/tree_kustomization_test.go +++ b/cmd/flux/tree_kustomization_test.go @@ -1,3 +1,4 @@ +//go:build unit // +build unit /* diff --git a/cmd/flux/version_utils_test.go b/cmd/flux/version_utils_test.go index 0aab01d9..fc9e8e76 100644 --- a/cmd/flux/version_utils_test.go +++ b/cmd/flux/version_utils_test.go @@ -1,3 +1,4 @@ +//go:build unit // +build unit /* diff --git a/go.mod b/go.mod index 78ae30a2..c2e8093a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/fluxcd/flux2 -go 1.16 +go 1.17 require ( github.com/Masterminds/semver/v3 v3.1.0 @@ -19,7 +19,6 @@ require ( github.com/fluxcd/pkg/untar v0.0.5 github.com/fluxcd/pkg/version v0.0.1 github.com/fluxcd/source-controller/api v0.20.1 - github.com/go-errors/errors v1.4.0 // indirect github.com/go-git/go-git/v5 v5.4.2 github.com/google/go-cmp v0.5.6 github.com/google/go-containerregistry v0.2.0 @@ -41,3 +40,97 @@ require ( sigs.k8s.io/kustomize/api v0.10.1 sigs.k8s.io/yaml v1.3.0 ) + +require ( + cloud.google.com/go v0.81.0 // indirect + github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect + github.com/Azure/go-autorest v14.2.0+incompatible // indirect + github.com/Azure/go-autorest/autorest v0.11.18 // indirect + github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect + github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect + github.com/Azure/go-autorest/logger v0.2.1 // indirect + github.com/Azure/go-autorest/tracing v0.6.0 // indirect + github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd // indirect + github.com/Microsoft/go-winio v0.4.16 // indirect + github.com/PuerkitoBio/purell v1.1.1 // indirect + github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect + github.com/acomagu/bufpipe v1.0.3 // indirect + github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 // indirect + github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect + github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/emirpasic/gods v1.12.0 // indirect + github.com/evanphx/json-patch v4.12.0+incompatible // indirect + github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect + github.com/fluxcd/pkg/apis/acl v0.0.3 // indirect + github.com/fluxcd/pkg/apis/kustomize v0.3.1 // indirect + github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect + github.com/fvbommel/sortorder v1.0.1 // indirect + github.com/go-errors/errors v1.4.0 // indirect + github.com/go-git/gcfg v1.5.0 // indirect + github.com/go-git/go-billy/v5 v5.3.1 // indirect + github.com/go-logr/logr v1.2.2 // indirect + github.com/go-openapi/jsonpointer v0.19.5 // indirect + github.com/go-openapi/jsonreference v0.19.5 // indirect + github.com/go-openapi/swag v0.19.14 // indirect + github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/protobuf v1.5.2 // indirect + github.com/google/btree v1.0.1 // indirect + github.com/google/go-github/v35 v35.3.0 // indirect + github.com/google/go-querystring v1.0.0 // indirect + github.com/google/gofuzz v1.2.0 // indirect + github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect + github.com/google/uuid v1.2.0 // indirect + github.com/googleapis/gnostic v0.5.5 // indirect + github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect + github.com/hashicorp/errwrap v1.0.0 // indirect + github.com/hashicorp/go-cleanhttp v0.5.1 // indirect + github.com/hashicorp/go-multierror v1.1.1 // indirect + github.com/hashicorp/go-retryablehttp v0.6.8 // indirect + github.com/imdario/mergo v0.3.12 // indirect + github.com/inconshreveable/mousetrap v1.0.0 // indirect + github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect + github.com/josharian/intern v1.0.0 // indirect + github.com/json-iterator/go v1.1.12 // indirect + github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect + github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect + github.com/mailru/easyjson v0.7.6 // indirect + github.com/mattn/go-runewidth v0.0.7 // indirect + github.com/mitchellh/go-homedir v1.1.0 // indirect + github.com/mitchellh/go-wordwrap v1.0.0 // indirect + github.com/moby/spdystream v0.2.0 // indirect + github.com/moby/term v0.0.0-20210610120745-9d4ed1856297 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.2 // indirect + github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect + github.com/peterbourgon/diskv v2.0.1+incompatible // indirect + github.com/pkg/errors v0.9.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/russross/blackfriday v1.5.2 // indirect + github.com/russross/blackfriday/v2 v2.0.1 // indirect + github.com/sergi/go-diff v1.1.0 // indirect + github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect + github.com/stretchr/testify v1.7.0 // indirect + github.com/xanzy/go-gitlab v0.51.1 // indirect + github.com/xanzy/ssh-agent v0.3.0 // indirect + github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca // indirect + go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect + golang.org/x/net v0.0.0-20211216030914-fe4d6282115f // indirect + golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect + golang.org/x/sys v0.0.0-20211029165221-6e7872819dc8 // indirect + golang.org/x/text v0.3.7 // indirect + golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect + google.golang.org/appengine v1.6.7 // indirect + google.golang.org/protobuf v1.27.1 // indirect + gopkg.in/inf.v0 v0.9.1 // indirect + gopkg.in/warnings.v0 v0.1.2 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect + k8s.io/component-base v0.23.1 // indirect + k8s.io/klog/v2 v2.30.0 // indirect + k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect + k8s.io/utils v0.0.0-20211208161948-7d6a63dca704 // indirect + sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect + sigs.k8s.io/kustomize/kyaml v0.13.0 // indirect + sigs.k8s.io/structured-merge-diff/v4 v4.2.0 // indirect +) diff --git a/internal/bootstrap/git/gogit/gogit_test.go b/internal/bootstrap/git/gogit/gogit_test.go index b70cf8c3..416898d1 100644 --- a/internal/bootstrap/git/gogit/gogit_test.go +++ b/internal/bootstrap/git/gogit/gogit_test.go @@ -1,3 +1,4 @@ +//go:build unit // +build unit package gogit diff --git a/internal/flags/crds_test.go b/internal/flags/crds_test.go index 9d20b095..e51362c1 100644 --- a/internal/flags/crds_test.go +++ b/internal/flags/crds_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/decryption_provider_test.go b/internal/flags/decryption_provider_test.go index 86a0deba..2995a02d 100644 --- a/internal/flags/decryption_provider_test.go +++ b/internal/flags/decryption_provider_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/ecdsa_curve_test.go b/internal/flags/ecdsa_curve_test.go index e58c8b8b..e42b98fd 100644 --- a/internal/flags/ecdsa_curve_test.go +++ b/internal/flags/ecdsa_curve_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/git_implementation_test.go b/internal/flags/git_implementation_test.go index e555dd27..22048f2e 100644 --- a/internal/flags/git_implementation_test.go +++ b/internal/flags/git_implementation_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/helm_chart_source_test.go b/internal/flags/helm_chart_source_test.go index 62b34ea6..726581ed 100644 --- a/internal/flags/helm_chart_source_test.go +++ b/internal/flags/helm_chart_source_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/helm_release_values_test.go b/internal/flags/helm_release_values_test.go index 8e392049..369f64bb 100644 --- a/internal/flags/helm_release_values_test.go +++ b/internal/flags/helm_release_values_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/kustomization_source_test.go b/internal/flags/kustomization_source_test.go index db5062d9..2d1ba7e0 100644 --- a/internal/flags/kustomization_source_test.go +++ b/internal/flags/kustomization_source_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/log_level_test.go b/internal/flags/log_level_test.go index a8ef1cae..8bb2e541 100644 --- a/internal/flags/log_level_test.go +++ b/internal/flags/log_level_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/public_key_algorithm_test.go b/internal/flags/public_key_algorithm_test.go index e2b69230..69b4bf46 100644 --- a/internal/flags/public_key_algorithm_test.go +++ b/internal/flags/public_key_algorithm_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/rsa_key_bits_test.go b/internal/flags/rsa_key_bits_test.go index e0b15e7c..d4bd2965 100644 --- a/internal/flags/rsa_key_bits_test.go +++ b/internal/flags/rsa_key_bits_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/safe_relative_path_test.go b/internal/flags/safe_relative_path_test.go index 8651436f..325bd658 100644 --- a/internal/flags/safe_relative_path_test.go +++ b/internal/flags/safe_relative_path_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/flags/source_bucket_provider_test.go b/internal/flags/source_bucket_provider_test.go index 5ec82e35..244a7ac6 100644 --- a/internal/flags/source_bucket_provider_test.go +++ b/internal/flags/source_bucket_provider_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/internal/utils/utils_test.go b/internal/utils/utils_test.go index 2e5d6542..516423e6 100644 --- a/internal/utils/utils_test.go +++ b/internal/utils/utils_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/pkg/manifestgen/sourcesecret/sourcesecret_test.go b/pkg/manifestgen/sourcesecret/sourcesecret_test.go index b7e4e2c1..e225bbd8 100644 --- a/pkg/manifestgen/sourcesecret/sourcesecret_test.go +++ b/pkg/manifestgen/sourcesecret/sourcesecret_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/pkg/manifestgen/sync/sync_test.go b/pkg/manifestgen/sync/sync_test.go index 175cb133..3ab0a743 100644 --- a/pkg/manifestgen/sync/sync_test.go +++ b/pkg/manifestgen/sync/sync_test.go @@ -1,3 +1,4 @@ +//go:build !e2e // +build !e2e /* diff --git a/tests/azure/go.mod b/tests/azure/go.mod index 6be7ae83..fcbdc583 100644 --- a/tests/azure/go.mod +++ b/tests/azure/go.mod @@ -1,6 +1,6 @@ module github.com/fluxcd/flux2/tests/azure -go 1.16 +go 1.17 require ( github.com/Azure/azure-event-hubs-go/v3 v3.3.13 @@ -23,3 +23,86 @@ require ( k8s.io/client-go v0.23.1 sigs.k8s.io/controller-runtime v0.11.0 ) + +require ( + cloud.google.com/go v0.54.0 // indirect + cloud.google.com/go/storage v1.6.0 // indirect + github.com/Azure/azure-amqp-common-go/v3 v3.0.1 // indirect + github.com/Azure/azure-sdk-for-go v51.1.0+incompatible // indirect + github.com/Azure/go-amqp v0.13.12 // indirect + github.com/Azure/go-autorest v14.2.0+incompatible // indirect + github.com/Azure/go-autorest/autorest v0.11.18 // indirect + github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect + github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect + github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect + github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect + github.com/Azure/go-autorest/logger v0.2.1 // indirect + github.com/Azure/go-autorest/tracing v0.6.0 // indirect + github.com/BurntSushi/toml v0.3.1 // indirect + github.com/aws/aws-sdk-go v1.15.78 // indirect + github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect + github.com/davecgh/go-spew v1.1.1 // indirect + github.com/devigned/tab v0.1.1 // indirect + github.com/evanphx/json-patch v4.11.0+incompatible // indirect + github.com/fluxcd/pkg/apis/kustomize v0.2.0 // indirect + github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect + github.com/go-logr/logr v0.4.0 // indirect + github.com/gogo/protobuf v1.3.2 // indirect + github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect + github.com/golang/protobuf v1.5.2 // indirect + github.com/google/go-cmp v0.5.6 // indirect + github.com/google/gofuzz v1.1.0 // indirect + github.com/google/uuid v1.1.2 // indirect + github.com/googleapis/gax-go/v2 v2.0.5 // indirect + github.com/googleapis/gnostic v0.5.5 // indirect + github.com/hashicorp/go-checkpoint v0.5.0 // indirect + github.com/hashicorp/go-cleanhttp v0.5.2 // indirect + github.com/hashicorp/go-getter v1.5.3 // indirect + github.com/hashicorp/go-retryablehttp v0.6.8 // indirect + github.com/hashicorp/go-safetemp v1.0.0 // indirect + github.com/hashicorp/go-uuid v1.0.1 // indirect + github.com/hashicorp/go-version v1.3.0 // indirect + github.com/hashicorp/terraform-json v0.12.0 // indirect + github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 // indirect + github.com/jpillora/backoff v1.0.0 // indirect + github.com/json-iterator/go v1.1.11 // indirect + github.com/jstemmer/go-junit-report v0.9.1 // indirect + github.com/klauspost/compress v1.11.2 // indirect + github.com/mitchellh/go-homedir v1.1.0 // indirect + github.com/mitchellh/go-testing-interface v1.0.0 // indirect + github.com/mitchellh/mapstructure v1.1.2 // indirect + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect + github.com/modern-go/reflect2 v1.0.1 // indirect + github.com/pkg/errors v0.9.1 // indirect + github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/ulikunitz/xz v0.5.8 // indirect + github.com/zclconf/go-cty v1.8.4 // indirect + go.opencensus.io v0.23.0 // indirect + go.uber.org/atomic v1.7.0 // indirect + golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b // indirect + golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect + golang.org/x/mod v0.4.2 // indirect + golang.org/x/net v0.0.0-20210520170846-37e1c6afe023 // indirect + golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect + golang.org/x/sys v0.0.0-20210817190340-bfb29a6856f2 // indirect + golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect + golang.org/x/text v0.3.6 // indirect + golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect + golang.org/x/tools v0.1.2 // indirect + golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect + google.golang.org/api v0.20.0 // indirect + google.golang.org/appengine v1.6.7 // indirect + google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c // indirect + google.golang.org/grpc v1.38.0 // indirect + google.golang.org/protobuf v1.26.0 // indirect + gopkg.in/inf.v0 v0.9.1 // indirect + gopkg.in/yaml.v2 v2.4.0 // indirect + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect + honnef.co/go/tools v0.0.1-2020.1.3 // indirect + k8s.io/apiextensions-apiserver v0.22.2 // indirect + k8s.io/klog/v2 v2.9.0 // indirect + k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e // indirect + k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a // indirect + sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect + sigs.k8s.io/yaml v1.2.0 // indirect +)