Merge branch 'main' into docs-s3-prefix-fix

pull/36868/head
Jared Baker 1 year ago committed by GitHub
commit 624f559469
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1 +1 @@
1.24.1
1.24.2

@ -1,6 +1,6 @@
module github.com/hashicorp/terraform
go 1.24.1
go 1.24.2
godebug winsymlink=0

@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/azure
go 1.24.1
go 1.24.2
require (
github.com/hashicorp/go-azure-helpers v0.72.0

@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/consul
go 1.24.1
go 1.24.2
require (
github.com/hashicorp/consul/api v1.13.0

@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/cos
go 1.24.1
go 1.24.2
require (
github.com/hashicorp/terraform v0.0.0-00010101000000-000000000000

@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/gcs
go 1.24.1
go 1.24.2
require (
cloud.google.com/go/kms v1.15.5

@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/kubernetes
go 1.24.1
go 1.24.2
require (
github.com/hashicorp/terraform v0.0.0-00010101000000-000000000000

@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/oss
go 1.24.1
go 1.24.2
require (
github.com/aliyun/alibaba-cloud-sdk-go v1.61.1501

@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/pg
go 1.24.1
go 1.24.2
require (
github.com/hashicorp/go-uuid v1.0.3

@ -1,6 +1,6 @@
module github.com/hashicorp/terraform/internal/backend/remote-state/s3
go 1.24.1
go 1.24.2
require (
github.com/aws/aws-sdk-go-v2 v1.36.0

@ -2,7 +2,7 @@ module github.com/hashicorp/terraform/internal/legacy
replace github.com/hashicorp/terraform => ../..
go 1.24.1
go 1.24.2
require (
github.com/davecgh/go-spew v1.1.1

@ -461,7 +461,7 @@ When the source of a module is a version control repository or archive file
(generically, a "package"), the module itself may be in a sub-directory relative
to the root of the package.
A special double-slash syntax is interpreted by Terraform to indicate that
A special double-slash syntax `//` is interpreted by Terraform to indicate that
the remaining path after that point is a sub-directory within the package.
For example:

Loading…
Cancel
Save