Skip to content

Commit

Permalink
Merge pull request #5 from PortOfPortland/terraform0.12
Browse files Browse the repository at this point in the history
Updated to terraform 0.12
  • Loading branch information
rayterrill committed Jul 17, 2019
2 parents 61dd7df + 25bcc20 commit 1992f21
Show file tree
Hide file tree
Showing 4 changed files with 486 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
*.exe
*.exe
vendor
terraform-provider-activedirectory
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,26 @@ resource "activedirectory_groupMembership" "test1" {

# Building
0. Make sure you have $GOPATH set ($env:GOPATH='c:\wip\go' on Windows, etc)
1. go get github.com\portofportland\terraform-provider-activedirectory
1. git clone https://github.com/PortOfPortland/terraform-provider-activedirectory
2. cd github.com\portofportland\terraform-provider-activedirectory
3. go build
3. switch to a feature branch
```
git checkout -b myfeature
```
4. get the dependencies
```
go get
```
5. prune any unnecessary dependencies
```
go mod tidy
```
6. vendor our dependencies
```
go mod vendor
```
7. build the module
```
go build
```

8 changes: 8 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module github.com/portofportland/terraform-provider-activedirectory

go 1.12

require (
github.com/hashicorp/terraform v0.12.0
github.com/portofportland/goPSRemoting v0.1.0
)
Loading

0 comments on commit 1992f21

Please sign in to comment.