-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19426 from alewando/route-table-read-retry
aws_route(_table): Wrap CRUD operations on route tables and routes in retries
- Loading branch information
Showing
33 changed files
with
2,163 additions
and
1,815 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
```release-note:enhancement | ||
resource/aws_route_table: Add retries when creating, deleting and replacing routes | ||
``` | ||
|
||
```release-note:enhancement | ||
resource/aws_route: Add retries when creating, deleting and replacing routes | ||
``` | ||
|
||
```release-note:enhancement | ||
resource/aws_default_route_table: Add retries when creating, deleting and replacing routes | ||
``` | ||
|
||
```release-note:enhancement | ||
resource/aws_default_route_table: Add retries when creating, deleting and replacing routes | ||
``` | ||
|
||
```release-note:enhancement | ||
resource/aws_main_route_table_association: Wait for association to reach the required state | ||
``` | ||
|
||
```release-note:enhancement | ||
resource/aws_route_table_association: Wait for association to reach the required state | ||
``` |
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 |
---|---|---|
|
@@ -356,6 +356,7 @@ rules: | |
paths: | ||
exclude: | ||
- "*_test.go" | ||
- aws/internal/tfresource/*.go | ||
include: | ||
- aws/ | ||
patterns: | ||
|
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package ec2 | ||
|
||
const ( | ||
// https://docs.aws.amazon.com/vpc/latest/privatelink/vpce-interface.html#vpce-interface-lifecycle | ||
VpcEndpointStateAvailable = "available" | ||
VpcEndpointStateDeleted = "deleted" | ||
VpcEndpointStateDeleting = "deleting" | ||
VpcEndpointStateFailed = "failed" | ||
VpcEndpointStatePending = "pending" | ||
VpcEndpointStatePendingAcceptance = "pendingAcceptance" | ||
VpcEndpointStateRejected = "rejected" | ||
) |
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
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
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
Oops, something went wrong.