From 7b33796e72d85fa15b9234b04547509cdc830be9 Mon Sep 17 00:00:00 2001 From: Robert Patrick Date: Tue, 20 Sep 2022 17:40:14 -0500 Subject: [PATCH 1/4] Update go.mod --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index e879e66..eb7fea0 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/gaarutyunov/terraform-provider-environment +module github.com/rpatrick/terraform-provider-environment go 1.17 From d646383534cd5359a0007034a21ad9765668e265 Mon Sep 17 00:00:00 2001 From: Robert Patrick Date: Tue, 20 Sep 2022 17:42:09 -0500 Subject: [PATCH 2/4] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 754af95..2d4cbf0 100644 --- a/README.md +++ b/README.md @@ -4,25 +4,25 @@ The Environment provider is a utility provider for including local environment v ## Installation -1. Download an appropriate binary from [Releases page](https://github.com/gaarutyunov/terraform-provider-environment/releases) +1. Download an appropriate binary from [Releases page](https://github.com/rpatrick00/terraform-provider-environment/releases) Or Install: ```shell -go install github.com/gaarutyunov/terraform-provider-environment@latest +go install github.com/rpatrick00/terraform-provider-environment@latest ``` 2. Copy: ```shell -mkdir -p ~/.terraform.d/plugins/github.com/gaarutyunov/environment//_ -cp ~/.terraform.d/plugins/github.com/gaarutyunov/environment/_ +mkdir -p ~/.terraform.d/plugins/github.com/rpatrick00/environment//_ +cp ~/.terraform.d/plugins/github.com/rpatrick00/environment/_ ``` For example: ```shell -mkdir -p ~/.terraform.d/plugins/github.com/gaarutyunov/environment/1.0.0/darwin_amd64 -cp /usr/local/go/bin/terraform-provider-environment ~/.terraform.d/plugins/github.com/gaarutyunov/environment/1.0.0/darwin_amd64 +mkdir -p ~/.terraform.d/plugins/github.com/rpatrick00/environment/1.0.0/darwin_amd64 +cp /usr/local/go/bin/terraform-provider-environment ~/.terraform.d/plugins/github.com/rpatrick00/environment/1.0.0/darwin_amd64 ``` ## environment_variable Data Source From 359b8ea6eeeb845347cb5f08b78b9e3c8640b82c Mon Sep 17 00:00:00 2001 From: Robert Patrick Date: Tue, 20 Sep 2022 17:42:34 -0500 Subject: [PATCH 3/4] Update go.mod --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index eb7fea0..ba0ce17 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/rpatrick/terraform-provider-environment +module github.com/rpatrick00/terraform-provider-environment go 1.17 From 065422301e42cc84b914a198aac9fb8bd5222207 Mon Sep 17 00:00:00 2001 From: Robert Patrick Date: Tue, 20 Sep 2022 17:43:21 -0500 Subject: [PATCH 4/4] Update main.go --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 427d4c6..484c940 100644 --- a/main.go +++ b/main.go @@ -16,7 +16,7 @@ package main import ( - "github.com/gaarutyunov/terraform-provider-environment/environment" + "github.com/rpatrick00/terraform-provider-environment/environment" "github.com/hashicorp/terraform-plugin-sdk/plugin" "github.com/hashicorp/terraform-plugin-sdk/terraform" )