Skip to content

Commit 1cfd76f

Browse files
authored
Merge branch 'main' into main
2 parents edecb01 + c64e6ce commit 1cfd76f

309 files changed

Lines changed: 3896 additions & 2164 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
ROOT_DIR ?= $(shell git rev-parse --show-toplevel)
22
SCRIPTS_BASE ?= $(ROOT_DIR)/scripts
3+
GOLANG_CI_YAML_PATH ?= ${ROOT_DIR}/golang-ci.yaml
4+
GOLANG_CI_ARGS ?= --allow-parallel-runners --config=${GOLANG_CI_YAML_PATH}
35

46
# SETUP AND TOOL INITIALIZATION TASKS
57
project-help:
@@ -11,7 +13,7 @@ project-tools:
1113
# LINT
1214
lint-golangci-lint:
1315
@echo "Linting with golangci-lint"
14-
@$(SCRIPTS_BASE)/lint-golangci-lint.sh
16+
@go tool golangci-lint run ${GOLANG_CI_ARGS}
1517

1618
lint-tf:
1719
@echo "Linting terraform files"
@@ -29,7 +31,7 @@ build:
2931

3032
fmt:
3133
@gofmt -s -w .
32-
@go tool goimports -w .
34+
@go tool golangci-lint fmt --config=${GOLANG_CI_YAML_PATH}
3335
@terraform fmt -diff -recursive
3436

3537
# TEST

docs/data-sources/loadbalancer.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,14 @@ data "stackit_loadbalancer" "example" {
4343
- `private_address` (String) Transient private Load Balancer IP address. It can change any time.
4444
- `security_group_id` (String) The ID of the egress security group assigned to the Load Balancer's internal machines. This ID is essential for allowing traffic from the Load Balancer to targets in different networks or STACKIT Network areas (SNA). To enable this, create a security group rule for your target VMs and set the `remote_security_group_id` of that rule to this value. This is typically used when `disable_security_group_assignment` is set to `true`.
4545
- `target_pools` (Attributes List) List of all target pools which will be used in the Load Balancer. Limited to 20. (see [below for nested schema](#nestedatt--target_pools))
46+
- `version` (String) Load balancer resource version.
4647

4748
<a id="nestedatt--listeners"></a>
4849
### Nested Schema for `listeners`
4950

5051
Optional:
5152

52-
- `server_name_indicators` (Attributes List) A list of domain names to match in order to pass TLS traffic to the target pool in the current listener (see [below for nested schema](#nestedatt--listeners--server_name_indicators))
53+
- `server_name_indicators` (Attributes List, Deprecated) A list of domain names to match in order to pass TLS traffic to the target pool in the current listener (see [below for nested schema](#nestedatt--listeners--server_name_indicators))
5354

5455
Read-Only:
5556

docs/data-sources/opensearch_instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ Read-Only:
5959
- `sgw_acl` (String) Comma separated list of IP networks in CIDR notation which are allowed to access this instance.
6060
- `syslog` (List of String) List of syslog servers to send logs to.
6161
- `tls_ciphers` (List of String) List of TLS ciphers to use.
62-
- `tls_protocols` (String) The TLS protocol to use.
62+
- `tls_protocols` (List of String) List of TLS protocols to use.

docs/resources/loadbalancer.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,6 +247,7 @@ import {
247247
- `id` (String) Terraform's internal resource ID. It is structured as "`project_id`","region","`name`".
248248
- `private_address` (String) Transient private Load Balancer IP address. It can change any time.
249249
- `security_group_id` (String) The ID of the egress security group assigned to the Load Balancer's internal machines. This ID is essential for allowing traffic from the Load Balancer to targets in different networks or STACKIT network areas (SNA). To enable this, create a security group rule for your target VMs and set the `remote_security_group_id` of that rule to this value. This is typically used when `disable_security_group_assignment` is set to `true`.
250+
- `version` (String) Load balancer resource version. This is needed to have concurrency safe updates.
250251

251252
<a id="nestedatt--listeners"></a>
252253
### Nested Schema for `listeners`
@@ -260,7 +261,7 @@ Required:
260261
Optional:
261262

262263
- `display_name` (String)
263-
- `server_name_indicators` (Attributes List) A list of domain names to match in order to pass TLS traffic to the target pool in the current listener (see [below for nested schema](#nestedatt--listeners--server_name_indicators))
264+
- `server_name_indicators` (Attributes List, Deprecated) A list of domain names to match in order to pass TLS traffic to the target pool in the current listener (see [below for nested schema](#nestedatt--listeners--server_name_indicators))
264265
- `tcp` (Attributes) Options that are specific to the TCP protocol. (see [below for nested schema](#nestedatt--listeners--tcp))
265266
- `udp` (Attributes) Options that are specific to the UDP protocol. (see [below for nested schema](#nestedatt--listeners--udp))
266267

@@ -365,7 +366,7 @@ Optional:
365366
Optional:
366367

367368
- `credentials_ref` (String) Credentials reference for logs. Not changeable after creation.
368-
- `push_url` (String) Credentials reference for logs. Not changeable after creation.
369+
- `push_url` (String) The ARGUS/Loki remote write Push URL to ship the logs to. Not changeable after creation.
369370

370371

371372
<a id="nestedatt--options--observability--metrics"></a>
@@ -374,4 +375,4 @@ Optional:
374375
Optional:
375376

376377
- `credentials_ref` (String) Credentials reference for metrics. Not changeable after creation.
377-
- `push_url` (String) Credentials reference for metrics. Not changeable after creation.
378+
- `push_url` (String) The ARGUS/Prometheus remote write Push URL to ship the metrics to. Not changeable after creation.

go.mod

Lines changed: 214 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,53 +12,246 @@ require (
1212
github.com/hashicorp/terraform-plugin-go v0.30.0
1313
github.com/hashicorp/terraform-plugin-log v0.10.0
1414
github.com/hashicorp/terraform-plugin-testing v1.14.0
15-
github.com/stackitcloud/stackit-sdk-go/core v0.24.0
15+
github.com/stackitcloud/stackit-sdk-go/core v0.24.1
1616
github.com/stackitcloud/stackit-sdk-go/services/alb v0.12.1
1717
github.com/stackitcloud/stackit-sdk-go/services/cdn v1.13.0
1818
github.com/stackitcloud/stackit-sdk-go/services/certificates v1.4.1
1919
github.com/stackitcloud/stackit-sdk-go/services/dns v0.19.1
20-
github.com/stackitcloud/stackit-sdk-go/services/edge v0.7.0
20+
github.com/stackitcloud/stackit-sdk-go/services/edge v0.8.0
2121
github.com/stackitcloud/stackit-sdk-go/services/git v0.11.0
2222
github.com/stackitcloud/stackit-sdk-go/services/iaas v1.3.5
2323
github.com/stackitcloud/stackit-sdk-go/services/kms v1.6.0
24-
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.8.0
24+
github.com/stackitcloud/stackit-sdk-go/services/loadbalancer v1.11.1
2525
github.com/stackitcloud/stackit-sdk-go/services/logme v0.27.1
2626
github.com/stackitcloud/stackit-sdk-go/services/logs v0.7.1
2727
github.com/stackitcloud/stackit-sdk-go/services/mariadb v0.27.1
2828
github.com/stackitcloud/stackit-sdk-go/services/modelserving v0.8.1
29-
github.com/stackitcloud/stackit-sdk-go/services/mongodbflex v1.7.1
29+
github.com/stackitcloud/stackit-sdk-go/services/mongodbflex v1.7.2
3030
github.com/stackitcloud/stackit-sdk-go/services/objectstorage v1.7.0
3131
github.com/stackitcloud/stackit-sdk-go/services/observability v0.17.0
3232
github.com/stackitcloud/stackit-sdk-go/services/opensearch v0.26.1
3333
github.com/stackitcloud/stackit-sdk-go/services/postgresflex v1.3.5
34-
github.com/stackitcloud/stackit-sdk-go/services/rabbitmq v0.26.0
35-
github.com/stackitcloud/stackit-sdk-go/services/redis v0.25.6
34+
github.com/stackitcloud/stackit-sdk-go/services/rabbitmq v0.29.0
35+
github.com/stackitcloud/stackit-sdk-go/services/redis v0.27.3
3636
github.com/stackitcloud/stackit-sdk-go/services/resourcemanager v0.20.0
3737
github.com/stackitcloud/stackit-sdk-go/services/scf v0.6.1
3838
github.com/stackitcloud/stackit-sdk-go/services/secretsmanager v0.14.3
3939
github.com/stackitcloud/stackit-sdk-go/services/serverbackup v1.3.8
4040
github.com/stackitcloud/stackit-sdk-go/services/serverupdate v1.2.6
4141
github.com/stackitcloud/stackit-sdk-go/services/serviceaccount v0.12.0
4242
github.com/stackitcloud/stackit-sdk-go/services/serviceenablement v1.4.1
43-
github.com/stackitcloud/stackit-sdk-go/services/sfs v0.6.1
43+
github.com/stackitcloud/stackit-sdk-go/services/sfs v0.6.3
4444
github.com/stackitcloud/stackit-sdk-go/services/ske v1.7.0
4545
github.com/stackitcloud/stackit-sdk-go/services/sqlserverflex v1.6.1
4646
github.com/teambition/rrule-go v1.8.2
4747
golang.org/x/mod v0.34.0
4848
)
4949

5050
require (
51+
4d63.com/gocheckcompilerdirectives v1.3.0 // indirect
52+
4d63.com/gochecknoglobals v0.2.2 // indirect
53+
codeberg.org/chavacava/garif v0.2.0 // indirect
54+
codeberg.org/polyfloyd/go-errorlint v1.9.0 // indirect
55+
dev.gaijin.team/go/exhaustruct/v4 v4.0.0 // indirect
56+
dev.gaijin.team/go/golib v0.6.0 // indirect
57+
github.com/4meepo/tagalign v1.4.3 // indirect
58+
github.com/Abirdcfly/dupword v0.1.7 // indirect
59+
github.com/AdminBenni/iota-mixing v1.0.0 // indirect
60+
github.com/AlwxSin/noinlineerr v1.0.5 // indirect
61+
github.com/Antonboom/errname v1.1.1 // indirect
62+
github.com/Antonboom/nilnil v1.1.1 // indirect
63+
github.com/Antonboom/testifylint v1.6.4 // indirect
64+
github.com/BurntSushi/toml v1.6.0 // indirect
65+
github.com/Djarvur/go-err113 v0.1.1 // indirect
66+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
67+
github.com/MirrexOne/unqueryvet v1.5.4 // indirect
68+
github.com/OpenPeeDeeP/depguard/v2 v2.2.1 // indirect
69+
github.com/alecthomas/chroma/v2 v2.23.1 // indirect
70+
github.com/alecthomas/go-check-sumtype v0.3.1 // indirect
71+
github.com/alexkohler/nakedret/v2 v2.0.6 // indirect
72+
github.com/alexkohler/prealloc v1.1.0 // indirect
73+
github.com/alfatraining/structtag v1.0.0 // indirect
74+
github.com/alingse/asasalint v0.0.11 // indirect
75+
github.com/alingse/nilnesserr v0.2.0 // indirect
76+
github.com/ashanbrown/forbidigo/v2 v2.3.0 // indirect
77+
github.com/ashanbrown/makezero/v2 v2.1.0 // indirect
78+
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
79+
github.com/beorn7/perks v1.0.1 // indirect
80+
github.com/bkielbasa/cyclop v1.2.3 // indirect
81+
github.com/blizzy78/varnamelen v0.8.0 // indirect
82+
github.com/bombsimon/wsl/v4 v4.7.0 // indirect
83+
github.com/bombsimon/wsl/v5 v5.6.0 // indirect
84+
github.com/breml/bidichk v0.3.3 // indirect
85+
github.com/breml/errchkjson v0.4.1 // indirect
86+
github.com/butuzov/ireturn v0.4.0 // indirect
87+
github.com/butuzov/mirror v1.3.0 // indirect
88+
github.com/catenacyber/perfsprint v0.10.1 // indirect
89+
github.com/ccojocar/zxcvbn-go v1.0.4 // indirect
90+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
91+
github.com/charithe/durationcheck v0.0.11 // indirect
92+
github.com/charmbracelet/colorprofile v0.2.3-0.20250311203215-f60798e515dc // indirect
93+
github.com/charmbracelet/lipgloss v1.1.0 // indirect
94+
github.com/charmbracelet/x/ansi v0.10.1 // indirect
95+
github.com/charmbracelet/x/cellbuf v0.0.13-0.20250311204145-2c3ea96c31dd // indirect
96+
github.com/charmbracelet/x/term v0.2.1 // indirect
97+
github.com/ckaznocha/intrange v0.3.1 // indirect
98+
github.com/curioswitch/go-reassign v0.3.0 // indirect
99+
github.com/daixiang0/gci v0.13.7 // indirect
100+
github.com/dave/dst v0.27.3 // indirect
101+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
102+
github.com/denis-tingaikin/go-header v0.5.0 // indirect
103+
github.com/dlclark/regexp2 v1.11.5 // indirect
104+
github.com/ettle/strcase v0.2.0 // indirect
105+
github.com/fatih/structtag v1.2.0 // indirect
106+
github.com/firefart/nonamedreturns v1.0.6 // indirect
107+
github.com/fsnotify/fsnotify v1.5.4 // indirect
108+
github.com/fzipp/gocyclo v0.6.0 // indirect
109+
github.com/ghostiam/protogetter v0.3.20 // indirect
110+
github.com/go-critic/go-critic v0.14.3 // indirect
111+
github.com/go-toolsmith/astcast v1.1.0 // indirect
112+
github.com/go-toolsmith/astcopy v1.1.0 // indirect
113+
github.com/go-toolsmith/astequal v1.2.0 // indirect
114+
github.com/go-toolsmith/astfmt v1.1.0 // indirect
115+
github.com/go-toolsmith/astp v1.1.0 // indirect
116+
github.com/go-toolsmith/strparse v1.1.0 // indirect
117+
github.com/go-toolsmith/typep v1.1.0 // indirect
118+
github.com/go-viper/mapstructure/v2 v2.5.0 // indirect
119+
github.com/go-xmlfmt/xmlfmt v1.1.3 // indirect
120+
github.com/gobwas/glob v0.2.3 // indirect
121+
github.com/godoc-lint/godoc-lint v0.11.2 // indirect
122+
github.com/gofrs/flock v0.13.0 // indirect
123+
github.com/golangci/asciicheck v0.5.0 // indirect
124+
github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32 // indirect
125+
github.com/golangci/go-printf-func-name v0.1.1 // indirect
126+
github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d // indirect
127+
github.com/golangci/golangci-lint/v2 v2.11.4 // indirect
128+
github.com/golangci/golines v0.15.0 // indirect
129+
github.com/golangci/misspell v0.8.0 // indirect
130+
github.com/golangci/plugin-module-register v0.1.2 // indirect
131+
github.com/golangci/revgrep v0.8.0 // indirect
132+
github.com/golangci/swaggoswag v0.0.0-20250504205917-77f2aca3143e // indirect
133+
github.com/golangci/unconvert v0.0.0-20250410112200-a129a6e6413e // indirect
134+
github.com/gordonklaus/ineffassign v0.2.0 // indirect
135+
github.com/gostaticanalysis/analysisutil v0.7.1 // indirect
136+
github.com/gostaticanalysis/comment v1.5.0 // indirect
137+
github.com/gostaticanalysis/forcetypeassert v0.2.0 // indirect
138+
github.com/gostaticanalysis/nilerr v0.1.2 // indirect
139+
github.com/hashicorp/go-immutable-radix/v2 v2.1.0 // indirect
51140
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
52-
github.com/kr/text v0.2.0 // indirect
53-
golang.org/x/telemetry v0.0.0-20260209163413-e7419c687ee4 // indirect
141+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
142+
github.com/hashicorp/hcl v1.0.0 // indirect
143+
github.com/hexops/gotextdiff v1.0.3 // indirect
144+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
145+
github.com/jgautheron/goconst v1.8.2 // indirect
146+
github.com/jingyugao/rowserrcheck v1.1.1 // indirect
147+
github.com/jjti/go-spancheck v0.6.5 // indirect
148+
github.com/julz/importas v0.2.0 // indirect
149+
github.com/karamaru-alpha/copyloopvar v1.2.2 // indirect
150+
github.com/kisielk/errcheck v1.10.0 // indirect
151+
github.com/kkHAIKE/contextcheck v1.1.6 // indirect
152+
github.com/kulti/thelper v0.7.1 // indirect
153+
github.com/kunwardeep/paralleltest v1.0.15 // indirect
154+
github.com/lasiar/canonicalheader v1.1.2 // indirect
155+
github.com/ldez/exptostd v0.4.5 // indirect
156+
github.com/ldez/gomoddirectives v0.8.0 // indirect
157+
github.com/ldez/grignotin v0.10.1 // indirect
158+
github.com/ldez/structtags v0.6.1 // indirect
159+
github.com/ldez/tagliatelle v0.7.2 // indirect
160+
github.com/ldez/usetesting v0.5.0 // indirect
161+
github.com/leonklingele/grouper v1.1.2 // indirect
162+
github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
163+
github.com/macabu/inamedparam v0.2.0 // indirect
164+
github.com/magiconair/properties v1.8.6 // indirect
165+
github.com/manuelarte/embeddedstructfieldcheck v0.4.0 // indirect
166+
github.com/manuelarte/funcorder v0.5.0 // indirect
167+
github.com/maratori/testableexamples v1.0.1 // indirect
168+
github.com/maratori/testpackage v1.1.2 // indirect
169+
github.com/matoous/godox v1.1.0 // indirect
170+
github.com/mattn/go-runewidth v0.0.16 // indirect
171+
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
172+
github.com/mgechev/revive v1.15.0 // indirect
173+
github.com/mitchellh/go-homedir v1.1.0 // indirect
174+
github.com/moricho/tparallel v0.3.2 // indirect
175+
github.com/muesli/termenv v0.16.0 // indirect
176+
github.com/nakabonne/nestif v0.3.1 // indirect
177+
github.com/nishanths/exhaustive v0.12.0 // indirect
178+
github.com/nishanths/predeclared v0.2.2 // indirect
179+
github.com/nunnatsa/ginkgolinter v0.23.0 // indirect
180+
github.com/pelletier/go-toml v1.9.5 // indirect
181+
github.com/pelletier/go-toml/v2 v2.2.4 // indirect
182+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
183+
github.com/prometheus/client_golang v1.12.1 // indirect
184+
github.com/prometheus/client_model v0.2.0 // indirect
185+
github.com/prometheus/common v0.32.1 // indirect
186+
github.com/prometheus/procfs v0.7.3 // indirect
187+
github.com/quasilyte/go-ruleguard v0.4.5 // indirect
188+
github.com/quasilyte/go-ruleguard/dsl v0.3.23 // indirect
189+
github.com/quasilyte/gogrep v0.5.0 // indirect
190+
github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727 // indirect
191+
github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect
192+
github.com/raeperd/recvcheck v0.2.0 // indirect
193+
github.com/rivo/uniseg v0.4.7 // indirect
194+
github.com/rogpeppe/go-internal v1.14.1 // indirect
195+
github.com/ryancurrah/gomodguard v1.4.1 // indirect
196+
github.com/ryanrolds/sqlclosecheck v0.6.0 // indirect
197+
github.com/sanposhiho/wastedassign/v2 v2.1.0 // indirect
198+
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
199+
github.com/sashamelentyev/interfacebloat v1.1.0 // indirect
200+
github.com/sashamelentyev/usestdlibvars v1.29.0 // indirect
201+
github.com/securego/gosec/v2 v2.24.8-0.20260309165252-619ce2117e08 // indirect
202+
github.com/sirupsen/logrus v1.9.4 // indirect
203+
github.com/sivchari/containedctx v1.0.3 // indirect
204+
github.com/sonatard/noctx v0.5.1 // indirect
205+
github.com/sourcegraph/go-diff v0.7.0 // indirect
206+
github.com/spf13/afero v1.15.0 // indirect
207+
github.com/spf13/cast v1.5.0 // indirect
208+
github.com/spf13/cobra v1.10.2 // indirect
209+
github.com/spf13/jwalterweatherman v1.1.0 // indirect
210+
github.com/spf13/pflag v1.0.10 // indirect
211+
github.com/spf13/viper v1.12.0 // indirect
212+
github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect
213+
github.com/stbenjam/no-sprintf-host-port v0.3.1 // indirect
214+
github.com/stretchr/objx v0.5.2 // indirect
215+
github.com/stretchr/testify v1.11.1 // indirect
216+
github.com/subosito/gotenv v1.4.1 // indirect
217+
github.com/tetafro/godot v1.5.4 // indirect
218+
github.com/timakin/bodyclose v0.0.0-20241222091800-1db5c5ca4d67 // indirect
219+
github.com/timonwong/loggercheck v0.11.0 // indirect
220+
github.com/tomarrell/wrapcheck/v2 v2.12.0 // indirect
221+
github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect
222+
github.com/ultraware/funlen v0.2.0 // indirect
223+
github.com/ultraware/whitespace v0.2.0 // indirect
224+
github.com/uudashr/gocognit v1.2.1 // indirect
225+
github.com/uudashr/iface v1.4.1 // indirect
226+
github.com/xen0n/gosmopolitan v1.3.0 // indirect
227+
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
228+
github.com/yagipy/maintidx v1.0.0 // indirect
229+
github.com/yeya24/promlinter v0.3.0 // indirect
230+
github.com/ykadowak/zerologlint v0.1.5 // indirect
231+
gitlab.com/bosi/decorder v0.4.2 // indirect
232+
go-simpler.org/musttag v0.14.0 // indirect
233+
go-simpler.org/sloglint v0.11.1 // indirect
234+
go.augendre.info/arangolint v0.4.0 // indirect
235+
go.augendre.info/fatcontext v0.9.0 // indirect
236+
go.uber.org/multierr v1.10.0 // indirect
237+
go.uber.org/zap v1.27.0 // indirect
238+
go.yaml.in/yaml/v3 v3.0.4 // indirect
239+
golang.org/x/exp/typeparams v0.0.0-20260209203927-2842357ff358 // indirect
240+
golang.org/x/telemetry v0.0.0-20260311193753-579e4da9a98c // indirect
241+
gopkg.in/ini.v1 v1.67.0 // indirect
242+
gopkg.in/yaml.v2 v2.4.0 // indirect
243+
gopkg.in/yaml.v3 v3.0.1 // indirect
244+
honnef.co/go/tools v0.7.0 // indirect
245+
mvdan.cc/gofumpt v0.9.2 // indirect
246+
mvdan.cc/unparam v0.0.0-20251027182757-5beb8c8f8f15 // indirect
54247
)
55248

56249
require (
57250
github.com/ProtonMail/go-crypto v1.1.6 // indirect
58251
github.com/agext/levenshtein v1.2.2 // indirect
59252
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
60253
github.com/cloudflare/circl v1.6.3 // indirect
61-
github.com/fatih/color v1.18.0 // indirect
254+
github.com/fatih/color v1.19.0 // indirect
62255
github.com/golang-jwt/jwt/v5 v5.3.1 // indirect
63256
github.com/golang/protobuf v1.5.4 // indirect
64257
github.com/hashicorp/errwrap v1.1.0 // indirect
@@ -69,7 +262,7 @@ require (
69262
github.com/hashicorp/go-multierror v1.1.1 // indirect
70263
github.com/hashicorp/go-plugin v1.7.0 // indirect
71264
github.com/hashicorp/go-uuid v1.0.3 // indirect
72-
github.com/hashicorp/go-version v1.7.0 // indirect
265+
github.com/hashicorp/go-version v1.8.0 // indirect
73266
github.com/hashicorp/hc-install v0.9.2 // indirect
74267
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
75268
github.com/hashicorp/logutils v1.0.0 // indirect
@@ -92,16 +285,19 @@ require (
92285
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
93286
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
94287
github.com/zclconf/go-cty v1.17.0 // indirect
95-
golang.org/x/crypto v0.48.0 // indirect
96-
golang.org/x/net v0.50.0 // indirect
97-
golang.org/x/sync v0.19.0 // indirect
98-
golang.org/x/sys v0.41.0 // indirect
99-
golang.org/x/text v0.34.0 // indirect
100-
golang.org/x/tools v0.42.0 // indirect
288+
golang.org/x/crypto v0.49.0 // indirect
289+
golang.org/x/net v0.52.0 // indirect
290+
golang.org/x/sync v0.20.0 // indirect
291+
golang.org/x/sys v0.42.0 // indirect
292+
golang.org/x/text v0.35.0 // indirect
293+
golang.org/x/tools v0.43.0 // indirect
101294
google.golang.org/appengine v1.6.8 // indirect
102295
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
103296
google.golang.org/grpc v1.79.3 // indirect
104297
google.golang.org/protobuf v1.36.11 // indirect
105298
)
106299

107-
tool golang.org/x/tools/cmd/goimports
300+
tool (
301+
github.com/golangci/golangci-lint/v2/cmd/golangci-lint
302+
golang.org/x/tools/cmd/goimports
303+
)

0 commit comments

Comments
 (0)