Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 990b05f

Browse files
authored
added sts auth and deleted kms functionality (#18)
1 parent 3b45649 commit 990b05f

File tree

591 files changed

+225782
-569
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

591 files changed

+225782
-569
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
cerberus-client
2-
vendor/
2+
.DS_Store
3+
.idea/

.travis.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,13 @@
11
sudo: false
22
language: go
33
go:
4-
- 1.8.3
4+
- 1.11.4
55
before_install:
6-
- go get github.com/Masterminds/glide
6+
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
77
- if [ ! -d $CODE_DIRECTORY ]; then mkdir -p $HOME/gopath/src/github.com/Nike-Inc; ln -s $TRAVIS_BUILD_DIR $CODE_DIRECTORY; fi # CI for forks
88
env:
99
global:
10-
- GLIDE_HOME="${HOME}/.glide"
1110
- CODE_DIRECTORY=$HOME/gopath/src/github.com/Nike-Inc/cerberus-go-client
12-
install:
13-
- cd $CODE_DIRECTORY # change dir into source
14-
- make bootstrap
1511
script:
1612
- cd $CODE_DIRECTORY # change dir into source
1713
- make test 2>&1 # Run tests

Gopkg.lock

Lines changed: 314 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Gopkg.toml
2+
3+
[[constraint]]
4+
name = "github.com/aws/aws-sdk-go"
5+
version = "1.16.17"
6+
7+
[[constraint]]
8+
name = "github.com/hashicorp/vault"
9+
version = "1.0.1"
10+
11+
[[constraint]]
12+
name = "github.com/smartystreets/goconvey"
13+
version = "1.6.3"
14+
15+
[prune]
16+
go-tests = true
17+
unused-packages = true

Makefile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
clean:
2+
go clean
3+
rm -rfv vendor
4+
5+
install:
6+
dep ensure -v
7+
18
test:
2-
go test -v `glide nv`
3-
bootstrap:
4-
glide install
9+
go test -v ./api ./auth ./cerberus ./utils
10+
511
build:
612
go build -o cerberus-client
713

0 commit comments

Comments
 (0)