cerberus_client 1.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/.gitignore +13 -0
- data/.rspec +2 -0
- data/CHANGELOG.md +8 -0
- data/CONTRIBUTING.md +39 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +202 -0
- data/README.md +71 -0
- data/cerberus_client.gemspec +33 -0
- data/lib/cerberus/assumed_role_credentials_provider_chain.rb +45 -0
- data/lib/cerberus/aws_role_credentials_provider.rb +200 -0
- data/lib/cerberus/aws_role_info.rb +15 -0
- data/lib/cerberus/cerberus_client_token.rb +37 -0
- data/lib/cerberus/default_credentials_provider_chain.rb +44 -0
- data/lib/cerberus/default_url_resolver.rb +26 -0
- data/lib/cerberus/env_credentials_provider.rb +29 -0
- data/lib/cerberus/exception/ambiguous_vault_bad_request.rb +22 -0
- data/lib/cerberus/exception/http_error.rb +24 -0
- data/lib/cerberus/exception/no_valid_providers.rb +17 -0
- data/lib/cerberus/exception/no_value_error.rb +19 -0
- data/lib/cerberus/vault_client.rb +207 -0
- data/lib/cerberus_client.rb +62 -0
- data/lib/cerberus_client/default_logger.rb +64 -0
- data/lib/cerberus_client/http.rb +67 -0
- data/lib/cerberus_client/log.rb +59 -0
- data/lib/cerberus_client/version.rb +3 -0
- metadata +102 -0
metadata
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: cerberus_client
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.2.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Joe Teibel
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-03-27 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.13'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.13'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: This is a Ruby based client library for communicating with Vault via
|
42
|
+
HTTP and enables authentication schemes specific to AWS and Cerberus. This client
|
43
|
+
currently supports read-only operations (write operations are not yet implemented,
|
44
|
+
feel free to open a pull request to implement write operations). To learn more about
|
45
|
+
Cerberus, please visit the Cerberus website.
|
46
|
+
email:
|
47
|
+
- joe.teibel@nike.com
|
48
|
+
executables: []
|
49
|
+
extensions: []
|
50
|
+
extra_rdoc_files: []
|
51
|
+
files:
|
52
|
+
- .gitignore
|
53
|
+
- .rspec
|
54
|
+
- CHANGELOG.md
|
55
|
+
- CONTRIBUTING.md
|
56
|
+
- Gemfile
|
57
|
+
- LICENSE.txt
|
58
|
+
- README.md
|
59
|
+
- cerberus_client.gemspec
|
60
|
+
- lib/cerberus/assumed_role_credentials_provider_chain.rb
|
61
|
+
- lib/cerberus/aws_role_credentials_provider.rb
|
62
|
+
- lib/cerberus/aws_role_info.rb
|
63
|
+
- lib/cerberus/cerberus_client_token.rb
|
64
|
+
- lib/cerberus/default_credentials_provider_chain.rb
|
65
|
+
- lib/cerberus/default_url_resolver.rb
|
66
|
+
- lib/cerberus/env_credentials_provider.rb
|
67
|
+
- lib/cerberus/exception/ambiguous_vault_bad_request.rb
|
68
|
+
- lib/cerberus/exception/http_error.rb
|
69
|
+
- lib/cerberus/exception/no_valid_providers.rb
|
70
|
+
- lib/cerberus/exception/no_value_error.rb
|
71
|
+
- lib/cerberus/vault_client.rb
|
72
|
+
- lib/cerberus_client.rb
|
73
|
+
- lib/cerberus_client/default_logger.rb
|
74
|
+
- lib/cerberus_client/http.rb
|
75
|
+
- lib/cerberus_client/log.rb
|
76
|
+
- lib/cerberus_client/version.rb
|
77
|
+
homepage: https://github.com/Nike-Inc/cerberus-ruby-client
|
78
|
+
licenses:
|
79
|
+
- Apache License Version 2
|
80
|
+
metadata:
|
81
|
+
allowed_push_host: https://rubygems.org
|
82
|
+
post_install_message:
|
83
|
+
rdoc_options: []
|
84
|
+
require_paths:
|
85
|
+
- lib
|
86
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ! '>='
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: '0'
|
91
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - ! '>='
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0'
|
96
|
+
requirements: []
|
97
|
+
rubyforge_project:
|
98
|
+
rubygems_version: 2.4.8
|
99
|
+
signing_key:
|
100
|
+
specification_version: 4
|
101
|
+
summary: ! '["A Ruby Client for Cerberus, a secure property store for cloud applications"]'
|
102
|
+
test_files: []
|