From aa1a85f01b1d33f1eec4cc6fb3f6d3a4ed746a8b Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Wed, 11 Dec 2024 17:04:09 -0800
Subject: [PATCH] Bump the terraform group across 1 directory with 4 updates
(#419)
Bumps the terraform group with 3 updates in the / directory:
[github.com/hashicorp/terraform-plugin-docs](https://github.com/hashicorp/terraform-plugin-docs),
[github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework)
and
[github.com/hashicorp/terraform-plugin-testing](https://github.com/hashicorp/terraform-plugin-testing).
Updates `github.com/hashicorp/terraform-plugin-docs` from 0.19.4 to
0.20.1
Release notes
Sourced from github.com/hashicorp/terraform-plugin-docs's
releases.
v0.20.1
BUG FIXES:
- validate: Fixed a bug that caused false positive validation errors
for resource types that have the same name as the provider. (#419)
- generate: Fixed a bug that caused all generated resource
documentation to have the same content when the provider has a resource
type with the same name as the provider. (#419)
- generate: Fixed a bug that would return an error when a static file
exists in both
templates
and docs
, which will
now be ignored. (#421)
v0.20.0
NOTES:
- all: This Go module has been updated to Go 1.22 per the Go support policy. It
is recommended to review the Go 1.22
release notes before upgrading. Any consumers building on earlier Go
versions may experience errors. (#400)
FEATURES:
- generate: Add support for ephemeral resources (#415)
- migrate: Add support for ephemeral resources (#415)
- validate: Add support for ephemeral resources (#415)
BUG FIXES:
- validate: File extension check now runs on
index.*
files instead of just index.md
files. (#413)
- validate: File extension check now specifies the correct valid
extensions in the error message. (#413)
- validate: Front matter check now runs with the correct options on
legacy index files. (#413)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-docs's
changelog.
0.20.1 (November 26, 2024)
BUG FIXES:
- validate: Fixed a bug that caused false positive validation errors
for resource types that have the same name as the provider. (#419)
- generate: Fixed a bug that caused all generated resource
documentation to have the same content when the provider has a resource
type with the same name as the provider. (#419)
- generate: Fixed a bug that would return an error when a static file
exists in both
templates
and docs
, which will
now be ignored. (#421)
0.20.0 (November 06, 2024)
NOTES:
- all: This Go module has been updated to Go 1.22 per the Go support policy. It
is recommended to review the Go 1.22
release notes before upgrading. Any consumers building on earlier Go
versions may experience errors. (#400)
FEATURES:
- generate: Add support for ephemeral resources (#415)
- migrate: Add support for ephemeral resources (#415)
- validate: Add support for ephemeral resources (#415)
BUG FIXES:
- validate: File extension check now runs on
index.*
files instead of just index.md
files. (#413)
- validate: File extension check now specifies the correct valid
extensions in the error message. (#413)
- validate: Front matter check now runs with the correct options on
legacy index files. (#413)
Commits
ac7d19a
Update changelog
11fcc79
all: Fix various bugs related to resource type names that match the
provider ...
4209153
Result of tsccr-helper -log-level=info gha update -latest .github/ (#420)
2004e44
Bump golang.org/x/text from 0.19.0 to 0.20.0 (#418)
439e333
Update changelog
1350b10
Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 in /tools (#417)
933b4ae
Result of tsccr-helper -log-level=info gha update -latest .github/ (#416)
97bd6c7
all: add support for ephemeral resources (#415)
6c67ef2
Validate: refactor internal methods to use fs.FS
interface
for file handlin...
d70aced
Bump github.com/hashicorp/terraform-json from 0.22.1 to 0.23.0 (#414)
- Additional commits viewable in compare
view
Updates `github.com/hashicorp/terraform-plugin-framework` from 1.12.0 to
1.13.0
Release notes
Sourced from github.com/hashicorp/terraform-plugin-framework's
releases.
v1.13.0
NOTES:
- Ephemeral resource support is in technical preview and offered
without compatibility promises until Terraform 1.10 is generally
available. (#1050)
FEATURES:
- ephemeral: New package for implementing ephemeral resources (#1050)
- ephemeral/schema: New package for implementing ephemeral resource
schemas (#1050)
ENHANCEMENTS:
- provider: Added
ProviderWithEphemeralResources
interface for implementing ephemeral resources (#1050)
- tfsdk: Added
EphemeralResultData
struct for
representing ephemeral values produced by a provider, such as from an
ephemeral resource (#1050)
- provider: Added
EphemeralResourceData
to
ConfigureResponse
, to pass provider-defined data to
ephemeral.EphemeralResource
implementations (#1050)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-framework's
changelog.
1.13.0 (October 31, 2024)
NOTES:
- Ephemeral resource support is in technical preview and offered
without compatibility promises until Terraform 1.10 is generally
available. (#1050)
FEATURES:
- ephemeral: New package for implementing ephemeral resources (#1050)
- ephemeral/schema: New package for implementing ephemeral resource
schemas (#1050)
ENHANCEMENTS:
- provider: Added
ProviderWithEphemeralResources
interface for implementing ephemeral resources (#1050)
- tfsdk: Added
EphemeralResultData
struct for
representing ephemeral values produced by a provider, such as from an
ephemeral resource (#1050)
- provider: Added
EphemeralResourceData
to
ConfigureResponse
, to pass provider-defined data to
ephemeral.EphemeralResource
implementations (#1050)
Commits
497e13a
Update changelog
ae74f93
ephemeral: Initial ephemeral resource type implementation (#1050)
a2137d3
build(deps): Bump github.com/hashicorp/terraform-plugin-go (#1051)
b372415
Result of tsccr-helper -log-level=info gha update -latest . (#1048)
bca1b06
Result of tsccr-helper -log-level=info gha update -latest . (#1046)
ffca03d
Result of tsccr-helper -log-level=info gha update -latest . (#1045)
- See full diff in compare
view
Updates `github.com/hashicorp/terraform-plugin-go` from 0.24.0 to 0.25.0
Release notes
Sourced from github.com/hashicorp/terraform-plugin-go's
releases.
v0.25.0
NOTES:
- tfprotov5+tfprotov6: An upcoming release will require the
EphemeralResourceServer
implementation as part of
ProviderServer
. (#441)
FEATURES:
- tfprotov5+tfprotov6: Upgraded protocols and added types to support
the new ephemeral resource type (#441)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-go's
changelog.
0.25.0 (October 30, 2024)
NOTES:
- tfprotov5+tfprotov6: An upcoming release will require the
EphemeralResourceServer
implementation as part of
ProviderServer
. (#441)
FEATURES:
- tfprotov5+tfprotov6: Upgraded protocols and added types to support
the new ephemeral resource type (#441)
Commits
3cebe39
Update changelog
879185f
tfprotov5+tfprotov6: Initial ephemeral resource type implementation (#441)
8e75df6
Result of tsccr-helper -log-level=info gha update -latest . (#439)
ed475eb
build(deps): Bump github.com/hashicorp/go-plugin from 1.6.1 to 1.6.2 (#440)
4bb130f
build(deps): Bump google.golang.org/protobuf from 1.34.2 to 1.35.1 (#437)
9ad05a3
Result of tsccr-helper -log-level=info gha update -latest . (#438)
47d2cbf
Result of tsccr-helper -log-level=info gha update -latest . (#436)
e20c6d1
build(deps): Bump google.golang.org/grpc from 1.67.0 to 1.67.1 (#435)
e814129
build(deps): Bump google.golang.org/grpc from 1.66.2 to 1.67.0 (#434)
- See full diff in compare
view
Updates `github.com/hashicorp/terraform-plugin-testing` from 1.10.0 to
1.11.0
Release notes
Sourced from github.com/hashicorp/terraform-plugin-testing's
releases.
v1.11.0
NOTES:
- all: This Go module has been updated to Go 1.22 per the Go support policy. It
is recommended to review the Go 1.22
release notes before upgrading. Any consumers building on earlier Go
versions may experience errors. (#371)
- echoprovider: The
echoprovider
package is considered
experimental and may be altered or removed in a subsequent release (#389)
FEATURES:
- tfversion: Added
SkipIfNotAlpha
version check for
testing experimental features of alpha Terraform builds. (#388)
- echoprovider: Introduced new
echoprovider
package,
which contains a v6 Terraform provider that can be used to test
ephemeral resource data. (#389)
Changelog
Sourced from github.com/hashicorp/terraform-plugin-testing's
changelog.
1.11.0 (November 19, 2024)
NOTES:
- all: This Go module has been updated to Go 1.22 per the Go support policy. It
is recommended to review the Go 1.22
release notes before upgrading. Any consumers building on earlier Go
versions may experience errors. (#371)
- echoprovider: The
echoprovider
package is considered
experimental and may be altered or removed in a subsequent release (#389)
FEATURES:
- tfversion: Added
SkipIfNotAlpha
version check for
testing experimental features of alpha Terraform builds. (#388)
- echoprovider: Introduced new
echoprovider
package,
which contains a v6 Terraform provider that can be used to test
ephemeral resource data. (#389)
Commits
7e23ebc
Update changelog
f1e790c
Result of tsccr-helper -log-level=info gha update -latest .github/ (#391)
862e9f3
build(deps): Bump github.com/hashicorp/hcl/v2 from 2.22.0 to 2.23.0 (#392)
33bf5cf
echoprovider: Add a new test-only v6 provider that echoes ephemeral
provider ...
4a88926
build(deps): Bump github.com/golang-jwt/jwt/v4 in /tools (#390)
65f3a3e
build(deps): Bump golang.org/x/crypto from 0.28.0 to 0.29.0 (#387)
918aea6
tfversion: Add SkipIfNotAlpha
version check (#388)
7f6b899
Result of tsccr-helper -log-level=info gha update -latest .github/ (#385)
5a23eaa
build(deps): Bump github.com/hashicorp/terraform-plugin-sdk/v2 (#384)
c593ce4
build(deps): Bump github.com/hashicorp/terraform-json (#381)
- Additional commits viewable in compare
view
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore ` will
remove the ignore condition of the specified dependency and ignore
conditions
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
go.mod | 20 ++++++++++----------
go.sum | 44 ++++++++++++++++++++++----------------------
2 files changed, 32 insertions(+), 32 deletions(-)
diff --git a/go.mod b/go.mod
index 45f3ebe..d7f5bc3 100644
--- a/go.mod
+++ b/go.mod
@@ -8,11 +8,11 @@ require (
github.com/chainguard-dev/terraform-provider-oci v0.0.17
github.com/google/go-cmp v0.6.0
github.com/google/go-containerregistry v0.20.2
- github.com/hashicorp/terraform-plugin-docs v0.19.4
- github.com/hashicorp/terraform-plugin-framework v1.12.0
- github.com/hashicorp/terraform-plugin-go v0.24.0
+ github.com/hashicorp/terraform-plugin-docs v0.20.1
+ github.com/hashicorp/terraform-plugin-framework v1.13.0
+ github.com/hashicorp/terraform-plugin-go v0.25.0
github.com/hashicorp/terraform-plugin-log v0.9.0
- github.com/hashicorp/terraform-plugin-testing v1.10.0
+ github.com/hashicorp/terraform-plugin-testing v1.11.0
github.com/sigstore/cosign/v2 v2.4.1
golang.org/x/sync v0.10.0
gopkg.in/yaml.v2 v2.4.0
@@ -42,7 +42,7 @@ require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
- github.com/bmatcuk/doublestar/v4 v4.6.1 // indirect
+ github.com/bmatcuk/doublestar/v4 v4.7.1 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/charmbracelet/lipgloss v0.13.1 // indirect
github.com/charmbracelet/log v0.4.0 // indirect
@@ -101,16 +101,16 @@ require (
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
- github.com/hashicorp/go-plugin v1.6.1 // indirect
+ github.com/hashicorp/go-plugin v1.6.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/hashicorp/go-version v1.7.0 // indirect
github.com/hashicorp/hc-install v0.9.0 // indirect
- github.com/hashicorp/hcl/v2 v2.22.0 // indirect
+ github.com/hashicorp/hcl/v2 v2.23.0 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform-exec v0.21.0 // indirect
- github.com/hashicorp/terraform-json v0.22.1 // indirect
- github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0 // indirect
+ github.com/hashicorp/terraform-json v0.23.0 // indirect
+ github.com/hashicorp/terraform-plugin-sdk/v2 v2.35.0 // indirect
github.com/hashicorp/terraform-registry-address v0.2.3 // indirect
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
github.com/hashicorp/yamux v0.1.1 // indirect
@@ -171,7 +171,7 @@ require (
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
github.com/xanzy/ssh-agent v0.3.3 // indirect
- github.com/yuin/goldmark v1.7.1 // indirect
+ github.com/yuin/goldmark v1.7.7 // indirect
github.com/yuin/goldmark-meta v1.1.0 // indirect
github.com/zclconf/go-cty v1.15.0 // indirect
go.abhg.dev/goldmark/frontmatter v0.2.0 // indirect
diff --git a/go.sum b/go.sum
index 8fef7fe..0f0e338 100644
--- a/go.sum
+++ b/go.sum
@@ -56,8 +56,8 @@ github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQ
github.com/bgentry/speakeasy v0.1.0/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs=
github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=
github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=
-github.com/bmatcuk/doublestar/v4 v4.6.1 h1:FH9SifrbvJhnlQpztAx++wlkk70QBf0iBWDwNy7PA4I=
-github.com/bmatcuk/doublestar/v4 v4.6.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc=
+github.com/bmatcuk/doublestar/v4 v4.7.1 h1:fdDeAqgT47acgwd9bd9HxJRDmc9UAmPpc+2m0CXv75Q=
+github.com/bmatcuk/doublestar/v4 v4.7.1/go.mod h1:xBQ8jztBU6kakFMg+8WGxn0c6z1fTSPVIjEY1Wr7jzc=
github.com/bufbuild/protocompile v0.4.0 h1:LbFKd2XowZvQ/kajzguUp2DC9UEIQhIq77fZZlaQsNA=
github.com/bufbuild/protocompile v0.4.0/go.mod h1:3v93+mbWn/v3xzN+31nwkJfrEpAUwp+BagBSZWx+TP8=
github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8=
@@ -246,8 +246,8 @@ github.com/hashicorp/go-hclog v1.6.3/go.mod h1:W4Qnvbt70Wk/zYJryRzDRU/4r0kIg0PVH
github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk=
github.com/hashicorp/go-multierror v1.1.1 h1:H5DkEtf6CXdFp0N0Em5UCwQpXMWke8IA0+lD48awMYo=
github.com/hashicorp/go-multierror v1.1.1/go.mod h1:iw975J/qwKPdAO1clOe2L8331t/9/fmwbPZ6JB6eMoM=
-github.com/hashicorp/go-plugin v1.6.1 h1:P7MR2UP6gNKGPp+y7EZw2kOiq4IR9WiqLvp0XOsVdwI=
-github.com/hashicorp/go-plugin v1.6.1/go.mod h1:XPHFku2tFo3o3QKFgSYo+cghcUhw1NA1hZyMK0PWAw0=
+github.com/hashicorp/go-plugin v1.6.2 h1:zdGAEd0V1lCaU0u+MxWQhtSDQmahpkwOun8U8EiRVog=
+github.com/hashicorp/go-plugin v1.6.2/go.mod h1:CkgLQ5CZqNmdL9U9JzM532t8ZiYQ35+pj3b1FD37R0Q=
github.com/hashicorp/go-retryablehttp v0.7.7 h1:C8hUCYzor8PIfXHa4UrZkU4VvK8o9ISHxT2Q8+VepXU=
github.com/hashicorp/go-retryablehttp v0.7.7/go.mod h1:pkQpWZeYWskR+D1tR2O5OcBFOxfA7DoAO6xtkuQnHTk=
github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
@@ -257,26 +257,26 @@ github.com/hashicorp/go-version v1.7.0 h1:5tqGy27NaOTB8yJKUZELlFAS/LTKJkrmONwQKe
github.com/hashicorp/go-version v1.7.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
github.com/hashicorp/hc-install v0.9.0 h1:2dIk8LcvANwtv3QZLckxcjyF5w8KVtiMxu6G6eLhghE=
github.com/hashicorp/hc-install v0.9.0/go.mod h1:+6vOP+mf3tuGgMApVYtmsnDoKWMDcFXeTxCACYZ8SFg=
-github.com/hashicorp/hcl/v2 v2.22.0 h1:hkZ3nCtqeJsDhPRFz5EA9iwcG1hNWGePOTw6oyul12M=
-github.com/hashicorp/hcl/v2 v2.22.0/go.mod h1:62ZYHrXgPoX8xBnzl8QzbWq4dyDsDtfCRgIq1rbJEvA=
+github.com/hashicorp/hcl/v2 v2.23.0 h1:Fphj1/gCylPxHutVSEOf2fBOh1VE4AuLV7+kbJf3qos=
+github.com/hashicorp/hcl/v2 v2.23.0/go.mod h1:62ZYHrXgPoX8xBnzl8QzbWq4dyDsDtfCRgIq1rbJEvA=
github.com/hashicorp/logutils v1.0.0 h1:dLEQVugN8vlakKOUE3ihGLTZJRB4j+M2cdTm/ORI65Y=
github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=
github.com/hashicorp/terraform-exec v0.21.0 h1:uNkLAe95ey5Uux6KJdua6+cv8asgILFVWkd/RG0D2XQ=
github.com/hashicorp/terraform-exec v0.21.0/go.mod h1:1PPeMYou+KDUSSeRE9szMZ/oHf4fYUmB923Wzbq1ICg=
-github.com/hashicorp/terraform-json v0.22.1 h1:xft84GZR0QzjPVWs4lRUwvTcPnegqlyS7orfb5Ltvec=
-github.com/hashicorp/terraform-json v0.22.1/go.mod h1:JbWSQCLFSXFFhg42T7l9iJwdGXBYV8fmmD6o/ML4p3A=
-github.com/hashicorp/terraform-plugin-docs v0.19.4 h1:G3Bgo7J22OMtegIgn8Cd/CaSeyEljqjH3G39w28JK4c=
-github.com/hashicorp/terraform-plugin-docs v0.19.4/go.mod h1:4pLASsatTmRynVzsjEhbXZ6s7xBlUw/2Kt0zfrq8HxA=
-github.com/hashicorp/terraform-plugin-framework v1.12.0 h1:7HKaueHPaikX5/7cbC1r9d1m12iYHY+FlNZEGxQ42CQ=
-github.com/hashicorp/terraform-plugin-framework v1.12.0/go.mod h1:N/IOQ2uYjW60Jp39Cp3mw7I/OpC/GfZ0385R0YibmkE=
-github.com/hashicorp/terraform-plugin-go v0.24.0 h1:2WpHhginCdVhFIrWHxDEg6RBn3YaWzR2o6qUeIEat2U=
-github.com/hashicorp/terraform-plugin-go v0.24.0/go.mod h1:tUQ53lAsOyYSckFGEefGC5C8BAaO0ENqzFd3bQeuYQg=
+github.com/hashicorp/terraform-json v0.23.0 h1:sniCkExU4iKtTADReHzACkk8fnpQXrdD2xoR+lppBkI=
+github.com/hashicorp/terraform-json v0.23.0/go.mod h1:MHdXbBAbSg0GvzuWazEGKAn/cyNfIB7mN6y7KJN6y2c=
+github.com/hashicorp/terraform-plugin-docs v0.20.1 h1:Fq7E/HrU8kuZu3hNliZGwloFWSYfWEOWnylFhYQIoys=
+github.com/hashicorp/terraform-plugin-docs v0.20.1/go.mod h1:Yz6HoK7/EgzSrHPB9J/lWFzwl9/xep2OPnc5jaJDV90=
+github.com/hashicorp/terraform-plugin-framework v1.13.0 h1:8OTG4+oZUfKgnfTdPTJwZ532Bh2BobF4H+yBiYJ/scw=
+github.com/hashicorp/terraform-plugin-framework v1.13.0/go.mod h1:j64rwMGpgM3NYXTKuxrCnyubQb/4VKldEKlcG8cvmjU=
+github.com/hashicorp/terraform-plugin-go v0.25.0 h1:oi13cx7xXA6QciMcpcFi/rwA974rdTxjqEhXJjbAyks=
+github.com/hashicorp/terraform-plugin-go v0.25.0/go.mod h1:+SYagMYadJP86Kvn+TGeV+ofr/R3g4/If0O5sO96MVw=
github.com/hashicorp/terraform-plugin-log v0.9.0 h1:i7hOA+vdAItN1/7UrfBqBwvYPQ9TFvymaRGZED3FCV0=
github.com/hashicorp/terraform-plugin-log v0.9.0/go.mod h1:rKL8egZQ/eXSyDqzLUuwUYLVdlYeamldAHSxjUFADow=
-github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0 h1:kJiWGx2kiQVo97Y5IOGR4EMcZ8DtMswHhUuFibsCQQE=
-github.com/hashicorp/terraform-plugin-sdk/v2 v2.34.0/go.mod h1:sl/UoabMc37HA6ICVMmGO+/0wofkVIRxf+BMb/dnoIg=
-github.com/hashicorp/terraform-plugin-testing v1.10.0 h1:2+tmRNhvnfE4Bs8rB6v58S/VpqzGC6RCh9Y8ujdn+aw=
-github.com/hashicorp/terraform-plugin-testing v1.10.0/go.mod h1:iWRW3+loP33WMch2P/TEyCxxct/ZEcCGMquSLSCVsrc=
+github.com/hashicorp/terraform-plugin-sdk/v2 v2.35.0 h1:wyKCCtn6pBBL46c1uIIBNUOWlNfYXfXpVo16iDyLp8Y=
+github.com/hashicorp/terraform-plugin-sdk/v2 v2.35.0/go.mod h1:B0Al8NyYVr8Mp/KLwssKXG1RqnTk7FySqSn4fRuLNgw=
+github.com/hashicorp/terraform-plugin-testing v1.11.0 h1:MeDT5W3YHbONJt2aPQyaBsgQeAIckwPX41EUHXEn29A=
+github.com/hashicorp/terraform-plugin-testing v1.11.0/go.mod h1:WNAHQ3DcgV/0J+B15WTE6hDvxcUdkPPpnB1FR3M910U=
github.com/hashicorp/terraform-registry-address v0.2.3 h1:2TAiKJ1A3MAkZlH1YI/aTVcLZRu7JseiXNRHbOAyoTI=
github.com/hashicorp/terraform-registry-address v0.2.3/go.mod h1:lFHA76T8jfQteVfT7caREqguFrW3c4MFSPhZB7HHgUM=
github.com/hashicorp/terraform-svchost v0.1.1 h1:EZZimZ1GxdqFRinZ1tpJwVxxt49xc/S52uzrw4x0jKQ=
@@ -399,8 +399,8 @@ github.com/psanford/memfs v0.0.0-20241019191636-4ef911798f9b/go.mod h1:tcaRap0jS
github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
github.com/rivo/uniseg v0.4.7 h1:WUdvkW8uEhrYfLC4ZzdpI2ztxP1I582+49Oc5Mq64VQ=
github.com/rivo/uniseg v0.4.7/go.mod h1:FN3SvrM+Zdj16jyLfmOkMNblXMcoc8DfTHruCPUcx88=
-github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8=
-github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4=
+github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=
+github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/sassoftware/relic v7.2.1+incompatible h1:Pwyh1F3I0r4clFJXkSI8bOyJINGqpgjJU3DYAZeI05A=
github.com/sassoftware/relic v7.2.1+incompatible/go.mod h1:CWfAxv73/iLZ17rbyhIEq3K9hs5w6FpNMdUT//qR+zk=
@@ -464,8 +464,8 @@ github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
-github.com/yuin/goldmark v1.7.1 h1:3bajkSilaCbjdKVsKdZjZCLBNPL9pYzrCakKaf4U49U=
-github.com/yuin/goldmark v1.7.1/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E=
+github.com/yuin/goldmark v1.7.7 h1:5m9rrB1sW3JUMToKFQfb+FGt1U7r57IHu5GrYrG2nqU=
+github.com/yuin/goldmark v1.7.7/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E=
github.com/yuin/goldmark-meta v1.1.0 h1:pWw+JLHGZe8Rk0EGsMVssiNb/AaPMHfSRszZeUeiOUc=
github.com/yuin/goldmark-meta v1.1.0/go.mod h1:U4spWENafuA7Zyg+Lj5RqK/MF+ovMYtBvXi1lBb2VP0=
github.com/zclconf/go-cty v1.15.0 h1:tTCRWxsexYUmtt/wVxgDClUe+uQusuI443uL6e+5sXQ=