diff --git a/test/integration/consul-container/test/multiport/explicit_destination_test.go b/test/integration/consul-container/test/multiport/explicit_destination_test.go index 019385fbd9..58f68a220e 100644 --- a/test/integration/consul-container/test/multiport/explicit_destination_test.go +++ b/test/integration/consul-container/test/multiport/explicit_destination_test.go @@ -6,6 +6,7 @@ package multiport import ( "context" "fmt" + pbauth "github.com/hashicorp/consul/proto-public/pbauth/v2beta1" pbcatalog "github.com/hashicorp/consul/proto-public/pbcatalog/v2beta1" pbmesh "github.com/hashicorp/consul/proto-public/pbmesh/v2beta1" libassert "github.com/hashicorp/consul/test/integration/consul-container/libs/assert" @@ -30,7 +31,6 @@ import ( // - Make sure a request from static-client to the virtual address (.virtual.consul) returns a // response from the upstream. func TestMultiportService_Explicit(t *testing.T) { - t.Skip() t.Parallel() cluster := createCluster(t) @@ -120,6 +120,11 @@ func createServerServicesAndWorkloads(t *testing.T, resourceClient *rtest.Client }, } + rtest.ResourceID(&pbresource.ID{ + Name: "static-server-identity", + Type: pbauth.WorkloadIdentityType, + }).Write(t, resourceClient) + rtest.ResourceID(&pbresource.ID{ Name: "static-server-workload", Type: pbcatalog.WorkloadType,