Skip to content

Commit d5c2cda

Browse files
authored
Upstream 5.65.0 (#4425)
Upgrade upstream to v5.65.0 Fixes #4422 New Data Source: aws_shield_protection New Resource: aws_glue_catalog_table_optimizer Upgrade to Go 1.23.0 following upstream.
1 parent 3ff4fa4 commit d5c2cda

File tree

154 files changed

+6295
-330
lines changed

Some content is hidden

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

154 files changed

+6295
-330
lines changed

.ci-mgmt.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ parallel: 1
55
timeout: 150
66
generate-nightly-test-workflow: true
77
providerVersion: github.com/hashicorp/terraform-provider-aws/version.ProviderVersion
8+
toolVersions:
9+
dotnet: "6.0.x"
10+
go: "1.23.x"
11+
java: "11"
12+
gradle: "7.6"
13+
node: "20.x"
14+
pulumi: "dev"
15+
python: "3.11.8"
816
env:
917
PULUMI_MISSING_DOCS_ERROR: true
1018
AWS_REGION: "us-west-2"

.github/actions/setup-tools/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
if: inputs.tools == 'all' || contains(inputs.tools, 'go')
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: "1.21.x"
25+
go-version: "1.23.x"
2626
cache-dependency-path: |
2727
provider/*.sum
2828
upstream/*.sum

devbox.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"packages": [
33
"yarn@latest",
44
"pulumictl@latest",
5-
"go@1.21.",
5+
"go@1.23.",
66
"nodejs@20.",
77
88

examples/go.mod

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/pulumi/pulumi-aws/examples/v6
22

3-
go 1.22.6
3+
go 1.23.0
44

55
require (
66
github.com/aws/aws-sdk-go v1.55.5
@@ -155,6 +155,7 @@ require (
155155
github.com/aws/aws-sdk-go-v2/service/elasticbeanstalk v1.26.3 // indirect
156156
github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.26.4 // indirect
157157
github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.34.1 // indirect
158+
github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.30.5 // indirect
158159
github.com/aws/aws-sdk-go-v2/service/elastictranscoder v1.25.4 // indirect
159160
github.com/aws/aws-sdk-go-v2/service/emr v1.42.3 // indirect
160161
github.com/aws/aws-sdk-go-v2/service/emrcontainers v1.30.5 // indirect

examples/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1441,6 +1441,8 @@ github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.26.4 h1:m+rMj7WOFCf
14411441
github.com/aws/aws-sdk-go-v2/service/elasticloadbalancing v1.26.4/go.mod h1:LmgiPApGNIhqMYvqutZx8OZp/ia8Dzp89BaqH8TaQQ8=
14421442
github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.34.1 h1:kGMwyO/8QEbcE5s9hnprQg82Bo0U5iHkcqFtQm5FODg=
14431443
github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2 v1.34.1/go.mod h1:rdgCuor2mAOU7LhpD7tO3TPl7BACCY4PzM9N0jnnHyo=
1444+
github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.30.5 h1:doJDRX17qdP/W93+FmW5zPj2vB9yWIojvqtOcK5CNnE=
1445+
github.com/aws/aws-sdk-go-v2/service/elasticsearchservice v1.30.5/go.mod h1:YqwsImPCrZ8Ay4V/YIqASX80JIfpaRp8zye3e8JU8UU=
14441446
github.com/aws/aws-sdk-go-v2/service/elastictranscoder v1.25.4 h1:oqcQPG5DC3KSHYtvU9IAGcx8m0bv/E1/N+axNTU8XBQ=
14451447
github.com/aws/aws-sdk-go-v2/service/elastictranscoder v1.25.4/go.mod h1:vrCOclUVPrk9dUIy1jPS4EE3oTIMy41essKbVgDIOJc=
14461448
github.com/aws/aws-sdk-go-v2/service/emr v1.42.3 h1:ndpZbpeHezH1PvwyZPMfsQFwNsdOm1smePijmDHEYiQ=

patches/0002-Add-S3-legacy-bucket-to-resources.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ scheme for registration: see
1414
https://github.com/hashicorp/terraform-provider-aws/pull/29717.
1515

1616
diff --git a/internal/provider/provider.go b/internal/provider/provider.go
17-
index cc2fcc4ed2..7c901f1efa 100644
17+
index 7f0b2027f7..c242026283 100644
1818
--- a/internal/provider/provider.go
1919
+++ b/internal/provider/provider.go
2020
@@ -13,6 +13,8 @@ import (

patches/0005-Remove-lakeformation-catalog_resource-default.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Subject: [PATCH] Remove lakeformation catalog_resource default
55

66

77
diff --git a/internal/service/lakeformation/permissions.go b/internal/service/lakeformation/permissions.go
8-
index cb641c005b..c7a4d8aeb2 100644
8+
index add4416c3c..628fde7fc9 100644
99
--- a/internal/service/lakeformation/permissions.go
1010
+++ b/internal/service/lakeformation/permissions.go
1111
@@ -43,8 +43,8 @@ func ResourcePermissions() *schema.Resource {

patches/0006-Workaround-SSM-Parameter-tier-bug.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Subject: [PATCH] Workaround SSM Parameter tier bug
77
- Disable diff suppression & counteractions
88

99
diff --git a/internal/service/ssm/parameter.go b/internal/service/ssm/parameter.go
10-
index 082353da5e..8ef6a77013 100644
10+
index a5fe04fa27..f8d9fca060 100644
1111
--- a/internal/service/ssm/parameter.go
1212
+++ b/internal/service/ssm/parameter.go
1313
@@ -93,15 +93,17 @@ func resourceParameter() *schema.Resource {

patches/0009-Add-ECR-credentials_data_source.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Subject: [PATCH] Add ECR credentials_data_source
55

66

77
diff --git a/internal/provider/provider.go b/internal/provider/provider.go
8-
index 7c901f1efa..5cfbc29f36 100644
8+
index c242026283..7578b0e6e8 100644
99
--- a/internal/provider/provider.go
1010
+++ b/internal/provider/provider.go
1111
@@ -13,6 +13,8 @@ import (

patches/0014-add-matchmaking-configuration-72.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Subject: [PATCH] add matchmaking configuration (#72)
1010
* add resource docs
1111

1212
diff --git a/internal/provider/provider.go b/internal/provider/provider.go
13-
index 5cfbc29f36..f64c912033 100644
13+
index 7578b0e6e8..5557727b6f 100644
1414
--- a/internal/provider/provider.go
1515
+++ b/internal/provider/provider.go
1616
@@ -15,6 +15,7 @@ import (

0 commit comments

Comments
 (0)