-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade terraform-provider-aws to v5.23.0 (#2931)
This PR was generated via `$ upgrade-provider pulumi/pulumi-aws`. --- - Upgrading terraform-provider-aws from 5.21.0 to 5.23.0. Fixes #2929 Fixes #2905
- Loading branch information
Showing
727 changed files
with
48,178 additions
and
5,280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,9 @@ extraTests: | |
cache-dependency-path: 'provider/go.sum' | ||
- name: go test | ||
run: | | ||
cd upstream/shim | ||
cd upstream | ||
go get github.com/hashicorp/[email protected] | ||
cd shim | ||
go test -v -coverprofile="coverage.txt" . | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/codecov-action@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -499,7 +499,9 @@ jobs: | |
go-version-file: provider/go.mod | ||
- name: go test | ||
run: | | ||
cd upstream/shim | ||
cd upstream | ||
go get github.com/hashicorp/[email protected] | ||
cd shim | ||
go test -v -coverprofile="coverage.txt" . | ||
- env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -424,7 +424,9 @@ jobs: | |
go-version-file: provider/go.mod | ||
- name: go test | ||
run: | | ||
cd upstream/shim | ||
cd upstream | ||
go get github.com/hashicorp/[email protected] | ||
cd shim | ||
go test -v -coverprofile="coverage.txt" . | ||
- env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -472,7 +472,9 @@ jobs: | |
go-version-file: provider/go.mod | ||
- name: go test | ||
run: | | ||
cd upstream/shim | ||
cd upstream | ||
go get github.com/hashicorp/[email protected] | ||
cd shim | ||
go test -v -coverprofile="coverage.txt" . | ||
- env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -416,7 +416,9 @@ jobs: | |
go-version-file: provider/go.mod | ||
- name: go test | ||
run: | | ||
cd upstream/shim | ||
cd upstream | ||
go get github.com/hashicorp/[email protected] | ||
cd shim | ||
go test -v -coverprofile="coverage.txt" . | ||
- env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
From e4e0106591857ef40f895a3bf1e3366b1fb76572 Mon Sep 17 00:00:00 2001 | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Daniel Bradley <[email protected]> | ||
Date: Fri, 4 Nov 2022 16:49:08 +0000 | ||
Subject: [PATCH 01/30] Add TagsSchemaTrulyComputed definition | ||
|
||
--- | ||
internal/tags/tags.go | 8 ++++++++ | ||
1 file changed, 8 insertions(+) | ||
|
||
diff --git a/internal/tags/tags.go b/internal/tags/tags.go | ||
index 12d3b9013e..bc9e14fc19 100644 | ||
|
@@ -23,6 +20,3 @@ index 12d3b9013e..bc9e14fc19 100644 | |
+ Elem: &schema.Schema{Type: schema.TypeString}, | ||
+ } | ||
+} | ||
-- | ||
2.39.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
From 1aa0fafec51b51198bda594de81fe452bd593123 Mon Sep 17 00:00:00 2001 | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Daniel Bradley <[email protected]> | ||
Date: Fri, 4 Nov 2022 17:03:31 +0000 | ||
Subject: [PATCH 02/30] Conns user agent | ||
|
||
Replace the useragent used for AWS client connections with a | ||
Pulumi-flavoured one. | ||
--- | ||
internal/conns/conns.go | 7 +++---- | ||
1 file changed, 3 insertions(+), 4 deletions(-) | ||
|
||
diff --git a/internal/conns/conns.go b/internal/conns/conns.go | ||
index 954266ba7a..404a654792 100644 | ||
|
@@ -35,6 +32,3 @@ index 954266ba7a..404a654792 100644 | |
}, | ||
} | ||
} | ||
-- | ||
2.39.1 | ||
|
Oops, something went wrong.