Skip to content

Commit

Permalink
removing more references to 'scaffolding'
Browse files Browse the repository at this point in the history
  • Loading branch information
Andy Royle committed Jan 17, 2022
1 parent 6534f83 commit 0c6ef8e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/data-sources/user.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
page_title: "marklogic_user Data Source - terraform-provider-marklogic"
subcategory: ""
description: |-
Sample data source in the Terraform provider scaffolding.
A user in Marklogic.
---

# marklogic_user (Data Source)

Sample data source in the Terraform provider scaffolding.
A user in Marklogic.

## Example Usage

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/data_source_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
func dataSourceUser() *schema.Resource {
return &schema.Resource{
// This description is used by the documentation generator and the language server.
Description: "Sample data source in the Terraform provider scaffolding.",
Description: "A user in Marklogic.",

ReadContext: dataSourceUserRead,

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/resource_user_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
)

func TestAccResourceScaffolding(t *testing.T) {
func TestAccResourceUser(t *testing.T) {
resource.UnitTest(t, resource.TestCase{
PreCheck: func() { testAccPreCheck(t) },
ProviderFactories: providerFactories,
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func main() {

if debugMode {
// TODO: update this string with the full name of your provider as used in your configs
err := plugin.Debug(context.Background(), "registry.terraform.io/hashicorp/scaffolding", opts)
err := plugin.Debug(context.Background(), "registry.terraform.io/healx/marklogic", opts)
if err != nil {
log.Fatal(err.Error())
}
Expand Down

0 comments on commit 0c6ef8e

Please sign in to comment.