Skip to content

Commit 34e49b1

Browse files
Merge pull request #686 from RedisLabs/OPCR-47-add-global-default-user
Add global_enable_default_user support for Active-Active databases
2 parents 11826f5 + ac27116 commit 34e49b1

21 files changed

+218
-137
lines changed

.github/workflows/terraform_provider_main.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
41-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
41+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4242
continue-on-error: true
4343
id: cache-terraform-plugin-dir
4444
timeout-minutes: 2
4545
with:
4646
path: terraform-plugin-dir
4747
key: ${{ runner.os }}-terraform-plugin-dir-${{ hashFiles('go.sum') }}-${{ hashFiles('provider/**') }}
4848
- if: steps.cache-terraform-plugin-dir.outputs.cache-hit != 'true' || steps.cache-terraform-plugin-dir.outcome == 'failure'
49-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
49+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
5050
with:
5151
go-version-file: go.mod
5252
- if: steps.cache-terraform-plugin-dir.outputs.cache-hit != 'true' || steps.cache-terraform-plugin-dir.outcome == 'failure'
@@ -62,15 +62,15 @@ jobs:
6262
runs-on: ubuntu-latest
6363
steps:
6464
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
65-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
65+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6666
continue-on-error: true
6767
id: cache-terraform-providers-schema
6868
timeout-minutes: 2
6969
with:
7070
path: terraform-providers-schema
7171
key: ${{ runner.os }}-terraform-providers-schema-${{ hashFiles('go.sum') }}-${{ hashFiles('provider/**') }}
7272
- if: steps.cache-terraform-providers-schema.outputs.cache-hit != 'true' || steps.cache-terraform-providers-schema.outcome == 'failure'
73-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
73+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
7474
timeout-minutes: 2
7575
with:
7676
path: terraform-plugin-dir
@@ -108,7 +108,7 @@ jobs:
108108
runs-on: ubuntu-latest
109109
steps:
110110
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
111-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
111+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
112112
with:
113113
go-version-file: go.mod
114114
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAcc(DataSource|Resource)RedisCloud(Essentials|Pro|ActiveActive)Database_.*"'
@@ -119,7 +119,7 @@ jobs:
119119
runs-on: ubuntu-latest
120120
steps:
121121
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
122-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
122+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
123123
with:
124124
go-version-file: go.mod
125125
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAcc(DataSource|Resource)RedisCloud(Essentials|Pro|ActiveActive)Subscription_.*"'
@@ -130,7 +130,7 @@ jobs:
130130
runs-on: ubuntu-latest
131131
steps:
132132
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
133-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
133+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
134134
with:
135135
go-version-file: go.mod
136136
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAcc(DataSource|Resource)RedisCloudSubscriptionTls_.*"'
@@ -141,7 +141,7 @@ jobs:
141141
runs-on: ubuntu-latest
142142
steps:
143143
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
144-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
144+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
145145
with:
146146
go-version-file: go.mod
147147
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAcc(DataSource|Resource)RedisCloudEssentialsPlan_.*"'
@@ -152,7 +152,7 @@ jobs:
152152
runs-on: ubuntu-latest
153153
steps:
154154
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
155-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
155+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
156156
with:
157157
go-version-file: go.mod
158158
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAcc(DataSource|Resource)RedisCloud(DataPersistence|DatabaseModules|Regions|Acl).*"'
@@ -163,7 +163,7 @@ jobs:
163163
runs-on: ubuntu-latest
164164
steps:
165165
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
166-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
166+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
167167
with:
168168
go-version-file: go.mod
169169
- run: EXECUTE_TESTS=true make testacc TESTARGS='-test.short -run="TestAcc(DataSource|Resource)RedisCloud(CloudAccount).*"'
@@ -174,7 +174,7 @@ jobs:
174174
runs-on: ubuntu-latest
175175
steps:
176176
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
177-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
177+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
178178
with:
179179
go-version-file: go.mod
180180
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAcc(DataSource|Resource)RedisCloud(TransitGatewayAttachment|PaymentMethod).*"'
@@ -196,7 +196,7 @@ jobs:
196196
runs-on: ubuntu-latest
197197
steps:
198198
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
199-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
199+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
200200
with:
201201
go-version-file: go.mod
202202
- run: make tfproviderlint

.github/workflows/terraform_provider_pr.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
41-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
41+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4242
continue-on-error: true
4343
id: cache-terraform-plugin-dir
4444
timeout-minutes: 2
4545
with:
4646
path: terraform-plugin-dir
4747
key: ${{ runner.os }}-terraform-plugin-dir-${{ hashFiles('go.sum') }}-${{ hashFiles('provider/**') }}
4848
- if: steps.cache-terraform-plugin-dir.outputs.cache-hit != 'true' || steps.cache-terraform-plugin-dir.outcome == 'failure'
49-
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
49+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
5050
with:
5151
go-version-file: go.mod
5252
- if: steps.cache-terraform-plugin-dir.outputs.cache-hit != 'true' || steps.cache-terraform-plugin-dir.outcome == 'failure'
@@ -62,15 +62,15 @@ jobs:
6262
runs-on: ubuntu-latest
6363
steps:
6464
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
65-
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
65+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6666
continue-on-error: true
6767
id: cache-terraform-providers-schema
6868
timeout-minutes: 2
6969
with:
7070
path: terraform-providers-schema
7171
key: ${{ runner.os }}-terraform-providers-schema-${{ hashFiles('go.sum') }}-${{ hashFiles('provider/**') }}
7272
- if: steps.cache-terraform-providers-schema.outputs.cache-hit != 'true' || steps.cache-terraform-providers-schema.outcome == 'failure'
73-
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
73+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
7474
timeout-minutes: 2
7575
with:
7676
path: terraform-plugin-dir
@@ -108,19 +108,18 @@ jobs:
108108
runs-on: ubuntu-latest
109109
steps:
110110
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
111-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
111+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
112112
with:
113113
go-version-file: go.mod
114114
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAccResourceRedisCloudActiveActiveDatabase_CRUDI"'
115115

116-
117116
go_test_smoke_essentials_sub:
118117
name: go test smoke essentials sub
119118
needs: [go_build]
120119
runs-on: ubuntu-latest
121120
steps:
122121
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
123-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
122+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
124123
with:
125124
go-version-file: go.mod
126125
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAccResourceRedisCloudEssentialsSubscription"'
@@ -132,7 +131,7 @@ jobs:
132131
runs-on: ubuntu-latest
133132
steps:
134133
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
135-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
134+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
136135
with:
137136
go-version-file: go.mod
138137
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAccResourceRedisCloudEssentialsDatabase_CRUDI"'
@@ -143,7 +142,7 @@ jobs:
143142
runs-on: ubuntu-latest
144143
steps:
145144
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
146-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
145+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
147146
with:
148147
go-version-file: go.mod
149148
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAccResourceRedisCloudProDatabase_CRUDI"'
@@ -155,7 +154,7 @@ jobs:
155154
runs-on: ubuntu-latest
156155
steps:
157156
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
158-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
157+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
159158
with:
160159
go-version-file: go.mod
161160
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAccResourceRedisCloud(PrivateServiceConnect_CRUDI|AclRule_CRUDI)"'
@@ -166,7 +165,7 @@ jobs:
166165
runs-on: ubuntu-latest
167166
steps:
168167
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
169-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
168+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
170169
with:
171170
go-version-file: go.mod
172171
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAccResourceRedisCloudProDatabase_Upgrade"'
@@ -177,7 +176,7 @@ jobs:
177176
runs-on: ubuntu-latest
178177
steps:
179178
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
180-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
179+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
181180
with:
182181
go-version-file: go.mod
183182
- run: EXECUTE_TESTS=true make testacc TESTARGS='-run="TestAccResourceRedisCloudPrivateLink_CRUDI"'
@@ -200,7 +199,7 @@ jobs:
200199
runs-on: ubuntu-latest
201200
steps:
202201
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
203-
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
202+
- uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
204203
with:
205204
go-version-file: go.mod
206205
- run: make tfproviderlint

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ website/node_modules
3030
website/vendor
3131
vendor
3232
.vscode/
33+
.claude/
34+
CLAUDE.md
3335

3436
# Test exclusions
3537
!command/test-fixtures/**/*.tfstate

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/)
55

6+
# 2.4.5 (9th October 2025)
7+
8+
## Added:
9+
- Support for the global_enable_default_user attribute to Active-Active database resources, allowing users to control whether the default Redis user is enabled across all regions.
610

711
# 2.4.4 (3rd October 2025)
812

docs/resources/rediscloud_active_active_subscription_database.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,20 +89,21 @@ The following arguments are supported:
8989
* `subscription_id`: (Required) The ID of the Active-Active subscription to create the database in. **Modifying this attribute will force creation of a new resource.**
9090
* `name` - (Required) A meaningful name to identify the database. **Modifying this attribute will force creation of a new resource.**
9191
* `redis_version` - (Optional) The Redis version of the database. If omitted, the Redis version will be the default. **Modifying this attribute will force creation of a new resource.**
92-
* `memory_limit_in_gb` - (Optional - **Required if `dataset_size_in_gb` is unset**) Maximum memory usage for this specific database, including replication and other overhead **Deprecated in favor of `dataset_size_in_gb` - not possible to import databases with this attribute set**
92+
* `memory_limit_in_gb` - (Optional - **Required if `dataset_size_in_gb` is unset**) Maximum memory usage for this specific database, including replication and other overhead **Deprecated in favor of `dataset_size_in_gb` - not possible to import databases with this attribute set**
9393
* `dataset_size_in_gb` - (Optional - **Required if `memory_limit_in_gb` is unset**) The maximum amount of data in the dataset for this specific database is in GB
9494
* `support_oss_cluster_api` - (Optional) Support Redis open-source (OSS) Cluster API. Default: ‘false’
9595
* `external_endpoint_for_oss_cluster_api` - (Optional) Should use the external endpoint for open-source (OSS) Cluster API.
9696
Can only be enabled if OSS Cluster API support is enabled. Default: 'false'
9797
* `enable_tls` - (Optional) Use TLS for authentication. Default: ‘false’
98-
`client_ssl_certificate` - (Optional) SSL certificate to authenticate user connections, conflicts with `client_tls_certificates`
98+
* `client_ssl_certificate` - (Optional) SSL certificate to authenticate user connections, conflicts with `client_tls_certificates`
9999
* `client_tls_certificates` - (Optional) A list of TLS certificates to authenticate user connections, conflicts with `client_ssl_certificate`
100100
* `data_eviction` - (Optional) The data items eviction policy (either: 'allkeys-lru', 'allkeys-lfu', 'allkeys-random', 'volatile-lru', 'volatile-lfu', 'volatile-random', 'volatile-ttl' or 'noeviction'. Default: 'volatile-lru')
101101
* `global_data_persistence` - (Optional) Global rate of database data persistence (in persistent storage) of regions that dont override global settings. Default: 'none'
102102
* `global_password` - (Optional) Password to access the database of regions that don't override global settings. If left empty, the password will be generated automatically
103103
* `global_alert` - (Optional) A block defining Redis database alert of regions that don't override global settings, documented below, can be specified multiple times. (either: 'dataset-size', 'datasets-size', 'throughput-higher-than', 'throughput-lower-than', 'latency', 'syncsource-error', 'syncsource-lag' or 'connections-limit')
104104
* `global_modules` - (Optional) A list of modules to be enabled on all deployments of this database. Supported modules: `RedisJSON`, `RediSearch`. Ignored after database creation.
105105
* `global_source_ips` - (Optional) List of source IP addresses or subnet masks of regions that don't override global settings. If specified, Redis clients will be able to connect to this database only from within the specified source IP addresses ranges (example: ['192.168.10.0/32', '192.168.12.0/24'])
106+
* `global_enable_default_user` - (Optional) When 'true', enables connecting to the database with the 'default' user across all regions. Default: 'true'
106107
* `global_resp_version` - (Optional) Either 'resp2' or 'resp3'. Resp version for Crdb databases within the AA database. Must be compatible with Redis version.
107108
* `port` - (Optional) TCP port on which the database is available - must be between 10000 and 19999. **Modifying this attribute will force creation of a new resource.**
108109
* `override_region` - (Optional) Override region specific configuration, documented below

go.mod

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ go 1.24.0
55
toolchain go1.24.1
66

77
require (
8-
github.com/RedisLabs/rediscloud-go-api v0.36.5
8+
github.com/RedisLabs/rediscloud-go-api v0.37.0
99
github.com/bflad/tfproviderlint v0.31.0
1010
github.com/hashicorp/go-cty v1.5.0
11-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0
11+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.38.1
1212
github.com/stretchr/testify v1.11.1
1313
)
1414

@@ -19,7 +19,7 @@ require (
1919
github.com/avast/retry-go/v4 v4.6.0 // indirect
2020
github.com/bflad/gopaniccheck v0.1.0 // indirect
2121
github.com/cloudflare/circl v1.6.1 // indirect
22-
github.com/davecgh/go-spew v1.1.1 // indirect
22+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2323
github.com/fatih/color v1.16.0 // indirect
2424
github.com/golang/protobuf v1.5.4 // indirect
2525
github.com/google/go-cmp v0.7.0 // indirect
@@ -28,33 +28,33 @@ require (
2828
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
2929
github.com/hashicorp/go-hclog v1.6.3 // indirect
3030
github.com/hashicorp/go-multierror v1.1.1 // indirect
31-
github.com/hashicorp/go-plugin v1.6.3 // indirect
31+
github.com/hashicorp/go-plugin v1.7.0 // indirect
3232
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
3333
github.com/hashicorp/go-uuid v1.0.3 // indirect
3434
github.com/hashicorp/go-version v1.7.0 // indirect
3535
github.com/hashicorp/hc-install v0.9.2 // indirect
36-
github.com/hashicorp/hcl/v2 v2.23.0 // indirect
36+
github.com/hashicorp/hcl/v2 v2.24.0 // indirect
3737
github.com/hashicorp/logutils v1.0.0 // indirect
38-
github.com/hashicorp/terraform-exec v0.23.0 // indirect
39-
github.com/hashicorp/terraform-json v0.25.0 // indirect
40-
github.com/hashicorp/terraform-plugin-go v0.27.0 // indirect
38+
github.com/hashicorp/terraform-exec v0.23.1 // indirect
39+
github.com/hashicorp/terraform-json v0.27.1 // indirect
40+
github.com/hashicorp/terraform-plugin-go v0.29.0 // indirect
4141
github.com/hashicorp/terraform-plugin-log v0.9.0 // indirect
42-
github.com/hashicorp/terraform-registry-address v0.2.5 // indirect
42+
github.com/hashicorp/terraform-registry-address v0.4.0 // indirect
4343
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
44-
github.com/hashicorp/yamux v0.1.1 // indirect
44+
github.com/hashicorp/yamux v0.1.2 // indirect
4545
github.com/mattn/go-colorable v0.1.13 // indirect
4646
github.com/mattn/go-isatty v0.0.20 // indirect
4747
github.com/mitchellh/copystructure v1.2.0 // indirect
4848
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
49-
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
49+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
5050
github.com/mitchellh/mapstructure v1.5.0 // indirect
5151
github.com/mitchellh/reflectwalk v1.0.2 // indirect
52-
github.com/oklog/run v1.0.0 // indirect
53-
github.com/pmezard/go-difflib v1.0.0 // indirect
52+
github.com/oklog/run v1.1.0 // indirect
53+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
5454
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
5555
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
5656
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
57-
github.com/zclconf/go-cty v1.16.2 // indirect
57+
github.com/zclconf/go-cty v1.17.0 // indirect
5858
golang.org/x/crypto v0.42.0 // indirect
5959
golang.org/x/mod v0.28.0 // indirect
6060
golang.org/x/net v0.44.0 // indirect
@@ -64,9 +64,9 @@ require (
6464
golang.org/x/text v0.29.0 // indirect
6565
golang.org/x/tools v0.37.0 // indirect
6666
google.golang.org/appengine v1.6.8 // indirect
67-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
68-
google.golang.org/grpc v1.72.1 // indirect
69-
google.golang.org/protobuf v1.36.6 // indirect
67+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250707201910-8d1bb00bc6a7 // indirect
68+
google.golang.org/grpc v1.75.1 // indirect
69+
google.golang.org/protobuf v1.36.9 // indirect
7070
gopkg.in/yaml.v3 v3.0.1 // indirect
7171
)
7272

0 commit comments

Comments
 (0)