Skip to content

Commit

Permalink
Merge pull request #27545 from shogohida/add-new-data-source-for-aws_…
Browse files Browse the repository at this point in the history
…appmesh_virtual_node

Add new data source for aws appmesh virtual node
  • Loading branch information
ewbankkit committed Mar 24, 2023
2 parents daa6501 + 4ea1800 commit 7d3f357
Show file tree
Hide file tree
Showing 17 changed files with 1,169 additions and 1,179 deletions.
3 changes: 3 additions & 0 deletions .changelog/27545.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:new-data-source
aws_appmesh_virtual_node
```
1 change: 1 addition & 0 deletions internal/service/appmesh/appmesh_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ func TestAccAppMesh_serial(t *testing.T) {
"multiListenerValidation": testAccVirtualNode_multiListenerValidation,
"logging": testAccVirtualNode_logging,
"tags": testAccVirtualNode_tags,
"dataSourceBasic": testAccVirtualNodeDataSource_basic,
},
"VirtualRouter": {
"basic": testAccVirtualRouter_basic,
Expand Down
8 changes: 8 additions & 0 deletions internal/service/appmesh/route_data_source_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,10 @@ resource "aws_appmesh_route" "test" {
}
}
}
tags = {
Name = %[1]q
}
}
data "aws_appmesh_route" "test" {
Expand Down Expand Up @@ -334,6 +338,10 @@ resource "aws_appmesh_route" "test" {
}
}
}
tags = {
Name = %[1]q
}
}
data "aws_appmesh_route" "test" {
Expand Down
4 changes: 4 additions & 0 deletions internal/service/appmesh/service_package_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions internal/service/appmesh/virtual_gateway_data_source_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ resource "aws_appmesh_virtual_gateway" "test" {
}
}
}
tags = {
Name = %[2]q
}
}
data "aws_appmesh_virtual_gateway" "test" {
Expand Down

0 comments on commit 7d3f357

Please sign in to comment.