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
94 changes: 52 additions & 42 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws-source/build/package/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the source binary
FROM golang:1.26.2-alpine3.23 AS builder
FROM golang:1.26.3-alpine3.23 AS builder
ARG TARGETOS
ARG TARGETARCH
ARG BUILD_VERSION
Expand Down
120 changes: 63 additions & 57 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,46 +1,50 @@
module github.com/overmindtech/cli

go 1.26.0
go 1.26.2

replace github.com/anthropics/anthropic-sdk-go => github.com/anthropics/anthropic-sdk-go v0.2.0-alpha.4

// Address an incompatibility between buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go and the kubernetes modules.
// See https://github.com/overmindtech/workspace/pull/1124 and https://github.com/kubernetes/apiserver/issues/116
replace github.com/google/cel-go => github.com/google/cel-go v0.22.1

// Carry the pool.acquire/prepare span removal patch on our fork while exaring/otelpgx#76 is in review.
// Drop this once upstream merges and tags a release.
replace github.com/exaring/otelpgx => github.com/overmindtech/otelpgx v0.10.0

require (
atomicgo.dev/keyboard v0.2.9
atomicgo.dev/keyboard v0.2.10
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.11-20260415201107-50325440f8f2.1
buf.build/go/protovalidate v1.1.3
buf.build/go/protovalidate v1.2.0
charm.land/lipgloss/v2 v2.0.3
cloud.google.com/go/aiplatform v1.124.0
cloud.google.com/go/aiplatform v1.125.0
cloud.google.com/go/auth v0.20.0
cloud.google.com/go/auth/oauth2adapt v0.2.8
cloud.google.com/go/bigquery v1.76.0
cloud.google.com/go/bigtable v1.46.0
cloud.google.com/go/certificatemanager v1.12.0
cloud.google.com/go/compute v1.60.0
cloud.google.com/go/bigquery v1.77.0
cloud.google.com/go/bigtable v1.47.0
cloud.google.com/go/certificatemanager v1.14.0
cloud.google.com/go/compute v1.62.0
cloud.google.com/go/compute/metadata v0.9.0 // indirect
cloud.google.com/go/container v1.49.0
cloud.google.com/go/dataplex v1.32.0
cloud.google.com/go/dataproc/v2 v2.19.0
cloud.google.com/go/eventarc v1.21.0
cloud.google.com/go/filestore v1.13.0
cloud.google.com/go/functions v1.22.0
cloud.google.com/go/iam v1.9.0
cloud.google.com/go/kms v1.29.0
cloud.google.com/go/logging v1.16.0
cloud.google.com/go/monitoring v1.27.0
cloud.google.com/go/networksecurity v0.14.0
cloud.google.com/go/orgpolicy v1.18.0
cloud.google.com/go/redis v1.21.0
cloud.google.com/go/resourcemanager v1.13.0
cloud.google.com/go/run v1.19.0
cloud.google.com/go/secretmanager v1.19.0
cloud.google.com/go/securitycentermanagement v1.4.0
cloud.google.com/go/spanner v1.90.0
cloud.google.com/go/container v1.51.0
cloud.google.com/go/dataplex v1.34.0
cloud.google.com/go/dataproc/v2 v2.21.0
cloud.google.com/go/eventarc v1.23.0
cloud.google.com/go/filestore v1.15.0
cloud.google.com/go/functions v1.24.0
cloud.google.com/go/iam v1.11.0
cloud.google.com/go/kms v1.31.0
cloud.google.com/go/logging v1.18.0
cloud.google.com/go/monitoring v1.29.0
cloud.google.com/go/networksecurity v0.16.0
cloud.google.com/go/orgpolicy v1.20.0
cloud.google.com/go/redis v1.23.0
cloud.google.com/go/resourcemanager v1.15.0
cloud.google.com/go/run v1.21.0
cloud.google.com/go/secretmanager v1.20.0
cloud.google.com/go/securitycentermanagement v1.6.0
cloud.google.com/go/spanner v1.91.0
cloud.google.com/go/storage v1.62.1
cloud.google.com/go/storagetransfer v1.16.0
cloud.google.com/go/storagetransfer v1.18.0
connectrpc.com/connect v1.18.1 // v1.19.0 was faulty, wait until it is above this version
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.21.1
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.13.1
Expand All @@ -60,7 +64,7 @@ require (
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources/v2 v2.1.0
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/sql/armsql/v2 v2.0.0-beta.7
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage/v3 v3.0.0
github.com/Masterminds/semver/v3 v3.4.0
github.com/Masterminds/semver/v3 v3.5.0
github.com/MrAlias/otel-schema-utils v0.4.0-alpha
github.com/auth0/go-jwt-middleware/v3 v3.1.0
github.com/aws/aws-sdk-go-v2 v1.41.7
Expand All @@ -69,11 +73,11 @@ require (
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.23
github.com/aws/aws-sdk-go-v2/service/apigateway v1.39.3
github.com/aws/aws-sdk-go-v2/service/autoscaling v1.66.2
github.com/aws/aws-sdk-go-v2/service/cloudfront v1.62.0
github.com/aws/aws-sdk-go-v2/service/cloudfront v1.63.0
github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.57.0
github.com/aws/aws-sdk-go-v2/service/directconnect v1.38.17
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.57.3
github.com/aws/aws-sdk-go-v2/service/ec2 v1.299.1
github.com/aws/aws-sdk-go-v2/service/ec2 v1.301.0
github.com/aws/aws-sdk-go-v2/service/ecs v1.79.1
github.com/aws/aws-sdk-go-v2/service/efs v1.41.16
github.com/aws/aws-sdk-go-v2/service/eks v1.83.0
Expand All @@ -86,7 +90,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/networkmanager v1.41.10
github.com/aws/aws-sdk-go-v2/service/rds v1.118.2
github.com/aws/aws-sdk-go-v2/service/route53 v1.62.7
github.com/aws/aws-sdk-go-v2/service/s3 v1.100.1
github.com/aws/aws-sdk-go-v2/service/s3 v1.101.0
github.com/aws/aws-sdk-go-v2/service/sns v1.39.17
github.com/aws/aws-sdk-go-v2/service/sqs v1.42.27
github.com/aws/aws-sdk-go-v2/service/ssm v1.68.6
Expand All @@ -96,7 +100,7 @@ require (
github.com/charmbracelet/glamour v0.10.0
github.com/coder/websocket v1.8.14
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/getsentry/sentry-go v0.45.1
github.com/getsentry/sentry-go v0.46.2
github.com/go-jose/go-jose/v4 v4.1.4
github.com/google/btree v1.1.3
github.com/google/uuid v1.6.0
Expand All @@ -107,19 +111,19 @@ require (
github.com/hashicorp/terraform-config-inspect v0.0.0-20260224005459-813a97530220
github.com/hashicorp/terraform-plugin-framework v1.19.0
github.com/hashicorp/terraform-plugin-go v0.31.0
github.com/hashicorp/terraform-plugin-testing v1.15.0
github.com/jedib0t/go-pretty/v6 v6.7.9
github.com/hashicorp/terraform-plugin-testing v1.16.0
github.com/jedib0t/go-pretty/v6 v6.7.10
github.com/lithammer/fuzzysearch v1.1.8 // indirect
github.com/micahhausler/aws-iam-policy v0.4.4
github.com/miekg/dns v1.1.72
github.com/mitchellh/go-homedir v1.1.0
github.com/muesli/reflow v0.3.0
github.com/nats-io/jwt/v2 v2.8.1
github.com/nats-io/nats-server/v2 v2.12.7
github.com/nats-io/nats.go v1.51.0
github.com/nats-io/nats-server/v2 v2.14.0
github.com/nats-io/nats.go v1.52.0
github.com/nats-io/nkeys v0.4.15
github.com/onsi/ginkgo/v2 v2.28.1 // indirect
github.com/onsi/gomega v1.39.1 // indirect
github.com/onsi/ginkgo/v2 v2.28.3 // indirect
github.com/onsi/gomega v1.40.0 // indirect
github.com/openrdap/rdap v0.9.2-0.20240517203139-eb57b3a8dedd
github.com/overmindtech/pterm v0.0.0-20240919144758-04d94ccb2297
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
Expand Down Expand Up @@ -151,11 +155,11 @@ require (
golang.org/x/sync v0.20.0
golang.org/x/text v0.36.0
gonum.org/v1/gonum v0.17.0
google.golang.org/api v0.276.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478
google.golang.org/grpc v1.80.0
google.golang.org/api v0.278.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20260504160031-60b97b32f348
google.golang.org/grpc v1.81.0
google.golang.org/protobuf v1.36.11
gopkg.in/ini.v1 v1.67.1
gopkg.in/ini.v1 v1.67.2
k8s.io/api v0.35.4
k8s.io/apimachinery v0.35.4
k8s.io/client-go v0.35.4
Expand Down Expand Up @@ -183,7 +187,7 @@ require (
github.com/alecthomas/chroma/v2 v2.16.0 // indirect
github.com/alecthomas/kingpin/v2 v2.4.0 // indirect
github.com/alecthomas/units v0.0.0-20240927000941-0f3dac36c52b // indirect
github.com/antithesishq/antithesis-sdk-go v0.6.0-default-no-op // indirect
github.com/antithesishq/antithesis-sdk-go v0.7.0-default-no-op // indirect
github.com/antlr4-go/antlr/v4 v4.13.1 // indirect
github.com/apache/arrow/go/v15 v15.0.2 // indirect
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
Expand Down Expand Up @@ -214,13 +218,13 @@ require (
github.com/clipperhouse/displaywidth v0.11.0 // indirect
github.com/clipperhouse/uax29/v2 v2.7.0 // indirect
github.com/cloudflare/circl v1.6.3 // indirect
github.com/cncf/xds/go v0.0.0-20251210132809-ee656c7534f5 // indirect
github.com/containerd/console v1.0.4 // indirect
github.com/cncf/xds/go v0.0.0-20260202195803-dba9d589def2 // indirect
github.com/containerd/console v1.0.5 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
github.com/dlclark/regexp2 v1.11.5 // indirect
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
github.com/envoyproxy/go-control-plane/envoy v1.37.0 // indirect
github.com/envoyproxy/protoc-gen-validate v1.3.0 // indirect
github.com/envoyproxy/protoc-gen-validate v1.3.3 // indirect
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
github.com/fatih/color v1.18.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
Expand All @@ -235,14 +239,14 @@ require (
github.com/goccy/go-json v0.10.5 // indirect
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/cel-go v0.27.0 // indirect
github.com/google/cel-go v0.28.0 // indirect
github.com/google/flatbuffers v23.5.26+incompatible // indirect
github.com/google/gnostic-models v0.7.0 // indirect
github.com/google/go-cmp v0.7.0 // indirect
github.com/google/go-tpm v0.9.8 // indirect
github.com/google/s2a-go v0.1.9 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.14 // indirect
github.com/gookit/color v1.5.4 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.15 // indirect
github.com/gookit/color v1.6.0 // indirect
github.com/gorilla/css v1.0.1 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
Expand All @@ -257,18 +261,18 @@ require (
github.com/hashicorp/hc-install v0.9.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-exec v0.25.0 // indirect
github.com/hashicorp/terraform-exec v0.25.1 // indirect
github.com/hashicorp/terraform-json v0.27.2 // indirect
github.com/hashicorp/terraform-plugin-log v0.10.0 // indirect
github.com/hashicorp/terraform-plugin-sdk/v2 v2.40.0 // indirect
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
github.com/hashicorp/terraform-svchost v0.2.1 // indirect
github.com/hashicorp/yamux v0.1.2 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.18.5 // indirect
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
github.com/lestrrat-go/dsig v1.0.0 // indirect
Expand All @@ -283,7 +287,7 @@ require (
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.23 // indirect
github.com/microcosm-cc/bluemonday v1.0.27 // indirect
github.com/minio/highwayhash v1.0.4-0.20251030100505-070ab1a87a76 // indirect
github.com/minio/highwayhash v1.0.4 // indirect
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
Expand All @@ -295,7 +299,7 @@ require (
github.com/muesli/termenv v0.16.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/oklog/run v1.2.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
github.com/pierrec/lz4/v4 v4.1.21 // indirect
Expand Down Expand Up @@ -323,7 +327,7 @@ require (
github.com/yuin/goldmark-emoji v1.0.5 // indirect
github.com/zeebo/xxh3 v1.0.2 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/contrib/detectors/gcp v1.39.0 // indirect
go.opentelemetry.io/contrib/detectors/gcp v1.42.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.67.0 // indirect
go.opentelemetry.io/otel/log v0.11.0 // indirect
go.opentelemetry.io/otel/metric v1.43.0 // indirect
Expand All @@ -335,10 +339,10 @@ require (
golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect
golang.org/x/mod v0.35.0 // indirect
golang.org/x/sys v0.43.0 // indirect
golang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c // indirect
golang.org/x/telemetry v0.0.0-20260409153401-be6f6cb8b1fa // indirect
golang.org/x/term v0.42.0 // indirect
golang.org/x/time v0.15.0 // indirect
golang.org/x/tools v0.43.0 // indirect
golang.org/x/tools v0.44.0 // indirect
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto v0.0.0-20260319201613-d00831a3d3e7 // indirect
Expand All @@ -353,3 +357,5 @@ require (
sigs.k8s.io/randfill v1.0.0 // indirect
sigs.k8s.io/yaml v1.6.0 // indirect
)

require github.com/go-test/deep v1.1.1 // indirect
Loading