Skip to content

Commit

Permalink
Merge pull request #2 from absolutelightning/NET-5676-service-resolvers
Browse files Browse the repository at this point in the history
Net 5676 service resolvers
  • Loading branch information
absolutelightning authored Oct 4, 2023
2 parents 0120ded + fdfeff2 commit c3e9d36
Show file tree
Hide file tree
Showing 5 changed files with 1,044 additions and 29 deletions.
29 changes: 29 additions & 0 deletions consul/resource_consul_config_entry_service_intentions_ce_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package consul

import (
"testing"

"github.com/hashicorp/terraform-plugin-sdk/helper/resource"
)

func TestAccConsulConfigEntryServiceIntentionsCETest(t *testing.T) {
providers, _ := startTestServer(t)

resource.Test(t, resource.TestCase{
PreCheck: func() { skipTestOnConsulEnterpriseEdition(t) },
Providers: providers,
Steps: []resource.TestStep{
{
Config: testConsulConfigEntryServiceIntentionsCE,
Check: resource.ComposeTestCheckFunc(),
},
},
})
}

const testConsulConfigEntryServiceIntentionsCE = `
`
Loading

0 comments on commit c3e9d36

Please sign in to comment.