mirror of
https://github.com/hashicorp/terraform.git
synced 2026-02-05 15:46:27 +01:00
* chore: Run `go get golang.org/x/crypto@v0.44.0` * chore: Run `make syncdeps` * chore: Run `make generate` * chore: Update staticcheck.conf to ignore SA4003
89 lines
3.7 KiB
Modula-2
89 lines
3.7 KiB
Modula-2
module github.com/hashicorp/terraform/internal/backend/remote-state/kubernetes
|
|
|
|
go 1.25
|
|
|
|
require (
|
|
github.com/hashicorp/terraform v0.0.0-00010101000000-000000000000
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/zclconf/go-cty v1.16.3
|
|
k8s.io/api v0.33.0
|
|
k8s.io/apimachinery v0.33.0
|
|
k8s.io/client-go v0.33.0
|
|
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
|
|
)
|
|
|
|
require (
|
|
github.com/agext/levenshtein v1.2.3 // indirect
|
|
github.com/apparentlymart/go-cidr v1.1.0 // indirect
|
|
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
|
|
github.com/apparentlymart/go-versions v1.0.2 // indirect
|
|
github.com/bmatcuk/doublestar v1.1.5 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
|
|
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
github.com/go-openapi/jsonpointer v0.21.0 // indirect
|
|
github.com/go-openapi/jsonreference v0.20.2 // indirect
|
|
github.com/go-openapi/swag v0.23.0 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/google/gnostic-models v0.6.9 // indirect
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/hashicorp/go-slug v0.16.8 // indirect
|
|
github.com/hashicorp/go-uuid v1.0.3 // indirect
|
|
github.com/hashicorp/go-version v1.7.0 // indirect
|
|
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
|
|
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
|
|
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
|
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/spf13/afero v1.9.5 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/x448/float16 v0.8.4 // indirect
|
|
github.com/zclconf/go-cty-yaml v1.1.0 // indirect
|
|
golang.org/x/crypto v0.44.0 // indirect
|
|
golang.org/x/mod v0.29.0 // indirect
|
|
golang.org/x/net v0.46.0 // indirect
|
|
golang.org/x/oauth2 v0.27.0 // indirect
|
|
golang.org/x/sync v0.18.0 // indirect
|
|
golang.org/x/sys v0.38.0 // indirect
|
|
golang.org/x/term v0.37.0 // indirect
|
|
golang.org/x/text v0.31.0 // indirect
|
|
golang.org/x/time v0.12.0 // indirect
|
|
golang.org/x/tools v0.38.0 // indirect
|
|
google.golang.org/protobuf v1.36.6 // indirect
|
|
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
k8s.io/klog/v2 v2.130.1 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
|
|
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
|
|
sigs.k8s.io/randfill v1.0.0 // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
|
)
|
|
|
|
replace github.com/hashicorp/terraform/internal/backend/remote-state/azure => ../azure
|
|
|
|
replace github.com/hashicorp/terraform/internal/backend/remote-state/consul => ../consul
|
|
|
|
replace github.com/hashicorp/terraform/internal/backend/remote-state/cos => ../cos
|
|
|
|
replace github.com/hashicorp/terraform/internal/backend/remote-state/gcs => ../gcs
|
|
|
|
replace github.com/hashicorp/terraform/internal/backend/remote-state/kubernetes => ../kubernetes
|
|
|
|
replace github.com/hashicorp/terraform/internal/backend/remote-state/oss => ../oss
|
|
|
|
replace github.com/hashicorp/terraform/internal/backend/remote-state/pg => ../pg
|
|
|
|
replace github.com/hashicorp/terraform/internal/backend/remote-state/s3 => ../s3
|
|
|
|
replace github.com/hashicorp/terraform => ../../../..
|