Skip to content

Commit

Permalink
Merge pull request #26695 from stefangrosaru/f-app-mesh
Browse files Browse the repository at this point in the history
Add AppMesh Route data source
  • Loading branch information
ewbankkit authored Mar 23, 2023
2 parents 10b9b33 + 42055bf commit ff70194
Show file tree
Hide file tree
Showing 16 changed files with 1,909 additions and 1,290 deletions.
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

0 comments on commit ff70194

Please sign in to comment.