mirror of
https://github.com/imjasonh/terraform-playground
synced 2026-07-06 23:12:22 +00:00
53 lines
2.2 KiB
Modula-2
53 lines
2.2 KiB
Modula-2
module github.com/imjasonh/terraform-playground/image-copy
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
cloud.google.com/go/compute/metadata v0.2.3
|
|
github.com/cloudevents/sdk-go/v2 v2.13.0
|
|
github.com/coreos/go-oidc/v3 v3.5.0
|
|
github.com/google/go-containerregistry v0.14.0
|
|
github.com/kelseyhightower/envconfig v1.4.0
|
|
golang.org/x/oauth2 v0.6.0
|
|
google.golang.org/api v0.108.0
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go/compute v1.18.0 // indirect
|
|
github.com/containerd/stargz-snapshotter/estargz v0.14.3 // indirect
|
|
github.com/docker/cli v23.0.1+incompatible // indirect
|
|
github.com/docker/distribution v2.8.1+incompatible // indirect
|
|
github.com/docker/docker v23.0.1+incompatible // indirect
|
|
github.com/docker/docker-credential-helpers v0.7.0 // indirect
|
|
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
|
|
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
|
|
github.com/golang/protobuf v1.5.3 // indirect
|
|
github.com/google/uuid v1.3.0 // indirect
|
|
github.com/googleapis/enterprise-certificate-proxy v0.2.1 // indirect
|
|
github.com/json-iterator/go v1.1.12 // indirect
|
|
github.com/klauspost/compress v1.16.0 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.2 // indirect
|
|
github.com/opencontainers/go-digest v1.0.0 // indirect
|
|
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/sirupsen/logrus v1.9.0 // indirect
|
|
github.com/vbatts/tar-split v0.11.2 // indirect
|
|
go.opencensus.io v0.24.0 // indirect
|
|
go.uber.org/atomic v1.9.0 // indirect
|
|
go.uber.org/goleak v1.1.12 // indirect
|
|
go.uber.org/multierr v1.7.0 // indirect
|
|
go.uber.org/zap v1.21.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20220525230936-793ad666bf5e // indirect
|
|
golang.org/x/net v0.8.0 // indirect
|
|
golang.org/x/sync v0.1.0 // indirect
|
|
golang.org/x/sys v0.6.0 // indirect
|
|
golang.org/x/text v0.8.0 // indirect
|
|
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20230124163310-31e0e69b6fc2 // indirect
|
|
google.golang.org/grpc v1.51.0 // indirect
|
|
google.golang.org/protobuf v1.29.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|