-
Notifications
You must be signed in to change notification settings - Fork 548
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from terraform-providers/master
merge from upstream
- Loading branch information
Showing
2,134 changed files
with
98,653 additions
and
536,777 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/golang:1.11 | ||
working_directory: /go/src/github.com/terraform-providers/terraform-provider-vault | ||
steps: | ||
- checkout | ||
- run: | ||
name: "Run Tests" | ||
command: go test -v ./... | ||
- run: | ||
name: "Run Build" | ||
command: go build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,6 @@ website/node_modules | |
.idea | ||
*.iml | ||
*.test | ||
*.iml | ||
.vscode | ||
|
||
website/vendor | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
module github.com/terraform-providers/terraform-provider-vault | ||
|
||
go 1.12 | ||
|
||
require ( | ||
cloud.google.com/go v0.37.4 // indirect | ||
github.com/agext/levenshtein v1.2.2 // indirect | ||
github.com/aws/aws-sdk-go v1.16.36 | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/golang/protobuf v1.3.1 // indirect | ||
github.com/gosimple/slug v1.4.1 | ||
github.com/hashicorp/go-cleanhttp v0.5.1 | ||
github.com/hashicorp/go-getter v0.0.0-20190326194518-69dec094fde6 // indirect | ||
github.com/hashicorp/go-hclog v0.8.0 // indirect | ||
github.com/hashicorp/go-plugin v1.0.0 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.0 // indirect | ||
github.com/hashicorp/go-uuid v1.0.1 // indirect | ||
github.com/hashicorp/golang-lru v0.5.1 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/hcl2 v0.0.0-20190327223817-3fb4ed0d9260 // indirect | ||
github.com/hashicorp/terraform v0.0.0-20190329073242-44702fa6c163 | ||
github.com/hashicorp/vault v0.11.1 | ||
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect | ||
github.com/mitchellh/cli v1.0.0 // indirect | ||
github.com/mitchellh/copystructure v1.0.0 // indirect | ||
github.com/mitchellh/go-homedir v1.0.0 | ||
github.com/mitchellh/go-wordwrap v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/ulikunitz/xz v0.5.6 // indirect | ||
github.com/zclconf/go-cty v0.0.0-20190320224746-fd76348b9329 // indirect | ||
golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c // indirect | ||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 // indirect | ||
golang.org/x/oauth2 v0.0.0-20190319182350-c85d3e98c914 // indirect | ||
golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e // indirect | ||
golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db // indirect | ||
google.golang.org/grpc v1.19.1 // indirect | ||
) |
Oops, something went wrong.