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 new data source for aws appmesh virtual node #27545

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/27545.txt
@@ -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
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
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
Expand Up @@ -60,6 +60,10 @@ resource "aws_appmesh_virtual_gateway" "test" {
}
}
}

tags = {
Name = %[2]q
}
}

data "aws_appmesh_virtual_gateway" "test" {
Expand Down