Skip to content

Commit

Permalink
Merge pull request #5 from rpatrick00/rpatrick00-patch-1
Browse files Browse the repository at this point in the history
Restoring project functionality for this repo
  • Loading branch information
rpatrick00 authored Sep 20, 2022
2 parents 9e0c28e + 0654223 commit fe216d7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/<Version>/<GOOS>_<GOARCH>
cp <Path to binary> ~/.terraform.d/plugins/github.com/gaarutyunov/environment/<Version/<GOOS>_<GOARCH>
mkdir -p ~/.terraform.d/plugins/github.com/rpatrick00/environment/<Version>/<GOOS>_<GOARCH>
cp <Path to binary> ~/.terraform.d/plugins/github.com/rpatrick00/environment/<Version/<GOOS>_<GOARCH>
```

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
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/gaarutyunov/terraform-provider-environment
module github.com/rpatrick00/terraform-provider-environment

go 1.17

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down

0 comments on commit fe216d7

Please sign in to comment.