Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AppMesh Route data source #26695

Merged
merged 26 commits into from
Mar 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
7829083
Add AppMesh Route data source
stefangrosaru Sep 7, 2022
7b74bce
Add changelog
stefangrosaru Sep 7, 2022
97199c3
Add App Mesh Route data source documentation
stefangrosaru Sep 7, 2022
1579422
Merge branch 'main' into HEAD
ewbankkit Mar 22, 2023
3b6cd8b
r/aws_appmesh_mesh: Alphabetize attributes.
ewbankkit Mar 22, 2023
dff4209
r/aws_appmesh_mesh: Tidy up resource Create, Update and Delete.
ewbankkit Mar 22, 2023
3b0fc67
r/aws_appmesh_mesh: Tidy up resource Read.
ewbankkit Mar 22, 2023
c7b6ebc
r/aws_appmesh_mesh: Tidy up acceptance tests.
ewbankkit Mar 22, 2023
b5e25f6
d/aws_appmesh_mesh: Tidy up.
ewbankkit Mar 22, 2023
811ad00
r/aws_appmesh_virtual_service: Alphabetize attributes.
ewbankkit Mar 22, 2023
865b93d
r/aws_appmesh_virtual_service: Tidy up resource Create, Update and De…
ewbankkit Mar 22, 2023
0855dc3
r/aws_appmesh_virtual_service: Tidy up resource Read.
ewbankkit Mar 22, 2023
b4c866e
r/aws_appmesh_virtual_service: Tidy up resource Import.
ewbankkit Mar 22, 2023
e50176f
r/aws_appmesh_virtual_service: Tidy up acceptance tests.
ewbankkit Mar 22, 2023
3cd5409
d/aws_appmesh_virtual_service: Tidy up.
ewbankkit Mar 22, 2023
d429db8
r/aws_appmesh_route: Alphabetize attributes.
ewbankkit Mar 22, 2023
b563c66
r/aws_appmesh_route: Tidy up resource Create, Update and Delete.
ewbankkit Mar 22, 2023
22537ed
r/aws_appmesh_route: Tidy up resource Read.
ewbankkit Mar 22, 2023
d6e251b
r/aws_appmesh_route: Tidy up acceptance tests.
ewbankkit Mar 22, 2023
e37ed10
d/aws_appmesh_mesh: Add and use 'dataSourcePropertyFromResourceProper…
ewbankkit Mar 23, 2023
dfcf92e
d/aws_appmesh_virtual_service: Use 'dataSourcePropertyFromResourcePro…
ewbankkit Mar 23, 2023
7055369
d/aws_appmesh_route: Use 'dataSourcePropertyFromResourceProperty'.
ewbankkit Mar 23, 2023
b78a3a4
d/aws_appmesh_mesh: Don't attempt to list tags if the current AWS acc…
ewbankkit Mar 23, 2023
a40da1c
d/aws_appmesh_virtual_service: Don't attempt to list tags if the curr…
ewbankkit Mar 23, 2023
c027741
d/aws_appmesh_route: Don't attempt to list tags if the current AWS ac…
ewbankkit Mar 23, 2023
42055bf
Fix providerlint 'S019: schema should omit Computed, Optional, or Req…
ewbankkit Mar 23, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .changelog/26695.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
```release-note:new-data-source
aws_appmesh_route
```

```release-note:bug
data-source/aws_appmesh_mesh: Don't attempt to list tags if the current AWS account is not the mesh owner
```

```release-note:bug
data-source/aws_appmesh_virtual_service: Don't attempt to list tags if the current AWS account is not the mesh owner
```
6 changes: 6 additions & 0 deletions internal/service/appmesh/appmesh_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,13 @@ func TestAccAppMesh_serial(t *testing.T) {
},
"Mesh": {
"basic": testAccMesh_basic,
"disappears": testAccMesh_disappears,
"egressFilter": testAccMesh_egressFilter,
"tags": testAccMesh_tags,
"dataSourceBasic": testAccMeshDataSource_basic,
"dataSourceMeshOwner": testAccMeshDataSource_meshOwner,
"dataSourceSpecAndTagsSet": testAccMeshDataSource_specAndTagsSet,
"dataSourceShared": testAccMeshDataSource_shared,
},
"Route": {
"disappears": testAccRoute_disappears,
Expand All @@ -48,6 +50,10 @@ func TestAccAppMesh_serial(t *testing.T) {
"tcpRouteWithPortMatch": testAccRoute_tcpRouteWithPortMatch,
"tcpRouteTimeout": testAccRoute_tcpRouteTimeout,
"tags": testAccRoute_tags,
"dataSourceHTTP2Route": testAccRouteDataSource_http2Route,
"dataSourceHTTPRoute": testAccRouteDataSource_httpRoute,
"dataSourceGRPCRoute": testAccRouteDataSource_grpcRoute,
"dataSourceTCPRoute": testAccRouteDataSource_tcpRoute,
},
"VirtualGateway": {
"basic": testAccVirtualGateway_basic,
Expand Down
Loading