sensu-plugins-vault 0.0.1 → 0.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: fafb0f8539e29eb0ea8e93e5cc4a42be7299cccd
4
- data.tar.gz: 761c604706bd963c18e87052ed43e0c8aa3d1e0b
2
+ SHA256:
3
+ metadata.gz: f054e777dc881cd72b8e248c7d45505618134ee2d76d33046caf30cd9de8cb6d
4
+ data.tar.gz: 85a12c33eead70735efc5725c66aff6d335f02a9b18984e9c4780772adf70cd8
5
5
  SHA512:
6
- metadata.gz: 2be478ea0bd63c818c327b185473d6d5e46e8fd1b3e2d3da376b9e96ee9084e1e96448995b7a8fed0f47aa07497f436b3bb001b005e93abb59c1653abb48a5d3
7
- data.tar.gz: d293dab24aa7a2381513664df3ee24c36e9373bfe90083582f862e4d061e4984c38fe0af882e0c5169a95521c643e0811dba411bfb2ce875bb6934646db58abb
6
+ metadata.gz: 1894797f04317843af9ccd89e62ae05e45eceed3c2d9eed3f7d7f5377398364352c405efdf51ed82cf9554e8800847ba9dbf0b8a07c07b9a40a761d3e3c04083
7
+ data.tar.gz: 03a9e925b84ec8002e5833511af65a8ff6c6d08e86fa857e526332b75ded713ee78b01506e28a8e6f50f1d2429956dd39f186d67f974db9fd473c72be904fe72
@@ -5,8 +5,14 @@ This CHANGELOG follows the format located [here](https://github.com/sensu-plugin
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [0.0.2] - 2019-03-26
9
+ ### Fixed
10
+ - check-vault-sealed.rb: use the right arg for controlling the protocol (@kratkyzobak)
11
+
12
+ ## [0.0.1] - 2019-02-20
8
13
  ### Added
9
14
  - Initial version
10
15
 
11
- [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-vault/compare/0.0.1...HEAD
16
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-vault/compare/0.0.2...HEAD
17
+ [0.0.2]: https://github.com/sensu-plugins/sensu-plugins-vault/compare/0.0.1...0.0.2
12
18
  [0.0.1]: https://github.com/sensu-plugins/sensu-plugins-vault/compare/7c2933148baf69336f1173190ab1556604625dcd...0.0.1
@@ -60,7 +60,7 @@ class VaultSealed < Sensu::Plugin::Check::CLI
60
60
 
61
61
  def run
62
62
  # set the vault address
63
- Vault.address = "#{config[:scheme]}://#{config[:host]}:#{config[:port]}"
63
+ Vault.address = "#{config[:protocol]}://#{config[:host]}:#{config[:port]}"
64
64
 
65
65
  # Allow insecure SSL
66
66
  Vault.ssl_verify = false if config[:insecure]
@@ -4,7 +4,7 @@ module SensuPluginsVault
4
4
  module Version
5
5
  MAJOR = 0
6
6
  MINOR = 0
7
- PATCH = 1
7
+ PATCH = 2
8
8
 
9
9
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
10
10
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-vault
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-02-20 00:00:00.000000000 Z
11
+ date: 2019-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -244,8 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
244
244
  - !ruby/object:Gem::Version
245
245
  version: '0'
246
246
  requirements: []
247
- rubyforge_project:
248
- rubygems_version: 2.6.11
247
+ rubygems_version: 3.0.3
249
248
  signing_key:
250
249
  specification_version: 4
251
250
  summary: Sensu plugins for vault