Skip to content

Commit

Permalink
migrate repo reference
Browse files Browse the repository at this point in the history
  • Loading branch information
petr-stupka committed Sep 3, 2024
1 parent 093f433 commit abad3be
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ generate:
go fmt

build:
go build -o ~/.terraform.d/plugins/github.com/glueckkanja-gab/aztools/0.0.1/linux_amd64/terraform-provider-aztools
go build -o ~/.terraform.d/plugins/github.com/glueckkanja/aztools/0.0.1/linux_amd64/terraform-provider-aztools

test: generate build
cd ./examples && terraform init -upgrade -get-plugins=true && terraform apply -auto-approve
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ Requirements
Using the provider
----------------------

See [Terraform Registry](https://registry.terraform.io/providers/glueckkanja-gab/aztools/latest).
See [Terraform Registry](https://registry.terraform.io/providers/glueckkanja/aztools/latest).

Building The Provider
---------------------

1. Clone the repository
1. Install 'Remote Containers' VS Code Extension
1. Build the provider using the `make` command:
1. Build the provider using the `make` command:
```sh
$ make build
```
Expand All @@ -30,7 +30,7 @@ Developing the Provider

1. Clone the repository
1. Install 'Remote Containers' VS Code Extension
1. Build & test the provider using the `make` command:
1. Build & test the provider using the `make` command:
```sh
$ make
```
2 changes: 1 addition & 1 deletion examples/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
// source = "hashicorp/azurerm"
//}
aztools = {
source = "github.com/glueckkanja-gab/aztools"
source = "github.com/glueckkanja/aztools"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/glueckkanja-gab/terraform-provider-aztools
module github.com/glueckkanja/terraform-provider-aztools

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion internal/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
"io/ioutil"
"os"

"github.com/glueckkanja/terraform-provider-aztools/internal/provider/models"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/mitchellh/go-homedir"
"github.com/glueckkanja-gab/terraform-provider-aztools/internal/provider/models"
)

// AzTools -
Expand Down
6 changes: 3 additions & 3 deletions internal/provider/resource_name.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import (
"fmt"
"strings"

"github.com/glueckkanja/terraform-provider-aztools/internal/provider/common"
"github.com/glueckkanja/terraform-provider-aztools/internal/provider/models"
"github.com/glueckkanja/terraform-provider-aztools/internal/provider/validate"
"github.com/google/uuid"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation"
"github.com/glueckkanja-gab/terraform-provider-aztools/internal/provider/common"
"github.com/glueckkanja-gab/terraform-provider-aztools/internal/provider/models"
"github.com/glueckkanja-gab/terraform-provider-aztools/internal/provider/validate"
)

func resourceName() *schema.Resource {
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"flag"
"log"

"github.com/glueckkanja-gab/terraform-provider-aztools/internal/provider"
"github.com/glueckkanja/terraform-provider-aztools/internal/provider"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
)

Expand All @@ -25,7 +25,7 @@ func main() {
flag.Parse()

if debugMode {
err := plugin.Debug(context.Background(), "github.com/glueckkanja-gab/terraform-provider-aztools/internal/provider",
err := plugin.Debug(context.Background(), "github.com/glueckkanja/terraform-provider-aztools/internal/provider",
&plugin.ServeOpts{
ProviderFunc: provider.AzTools(version),
})
Expand Down

0 comments on commit abad3be

Please sign in to comment.