hiera-consul 0.0.2 → 0.0.3

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
2
  SHA1:
3
- metadata.gz: 5511f6fb4e5f61eca5669dba7d210e8e69c93519
4
- data.tar.gz: 747b63180b69108982f7649cfe7c4e4df6e9c51d
3
+ metadata.gz: 699b0026da73c5c21ccfaa87ba2f9fbadb61cc9f
4
+ data.tar.gz: 0dfc0d7b9a1fda71d53adc3a7ef7ee30ae28bc35
5
5
  SHA512:
6
- metadata.gz: ca6875819a8c7f2cb36a84474c66505d79cac6ffd86a04dfa8a28bfd267df5864aea77000c4134bbe59e2a327e376e6264c12789155449bc6b1a3508e61fc2c2
7
- data.tar.gz: 864e34a71ba9261cf7944c0da1e0e6436f29152af4ea7cbbc90870292d06f9b610dda4cfbf5d578f2e26658dda156e0985911cbfe51b290a930792435b321743
6
+ metadata.gz: aadc3b95074ab3826450725b377762d8efd2e2fce003d04daaddf85ada0c1415ede768c07298879cb633eda173008d40522fe1a9029b40665b8e20e0c91575b9
7
+ data.tar.gz: 025c1139082ae81c42f3eafc560cdc315c75bac6c64402bd7df8b9b19c2d3dcb941f6a875868669a63905fc673f46768596f55f321aedcc5a82a8945097bb518
@@ -10,26 +10,34 @@ class Hiera
10
10
  require 'uri'
11
11
 
12
12
  @config = Config[:consul]
13
+
13
14
  if ENV['CONSUL_HTTP_ADDR']
14
- # By convention the ENV var does not contain a scheme, but URI
15
- # requires one. Net::HTTP will switch to https if configured later.
16
- uri = URI('http://' + ENV['CONSUL_HTTP_ADDR'])
17
- @consul = Net::HTTP.new(uri.host, uri.port)
18
- elsif (@config[:host] && @config[:port])
19
- @consul = Net::HTTP.new(@config[:host], @config[:port])
20
- else
21
- raise "[hiera-consul] Missing minimum configuration, please check hiera.yaml"
15
+ #TODO(jsok): Check CONSUL_HTTP_SSL and set scheme appropriately
16
+ scheme = 'http://'
17
+ address = ENV['CONSUL_HTTP_ADDR']
18
+ uri = URI("#{scheme}#{address}")
19
+ @config[:host] = uri.host
20
+ @config[:port] = uri.port
22
21
  end
23
- @consul.read_timeout = @config[:http_read_timeout] || 10
24
- @consul.open_timeout = @config[:http_connect_timeout] || 10
25
22
 
26
23
  begin
24
+ if (@config[:host] && @config[:port])
25
+ @consul = Net::HTTP.new(@config[:host], @config[:port])
26
+ @consul.read_timeout = @config[:http_read_timeout] || 10
27
+ @consul.open_timeout = @config[:http_connect_timeout] || 10
28
+ #TODO(jsok): Check CONSUL_HTTP_SSL_VERIFY and configure SSL certs
29
+ else
30
+ raise "host info not found in CONSUL_HTTP_ADDR or @config[:host,:port]"
31
+ end
32
+
27
33
  check_agent
28
34
  Hiera.debug("[hiera-consul] Client configured to connect to #{@consul.address}:#{@consul.port}")
35
+
29
36
  rescue Exception => e
30
37
  @consul = nil
31
38
  Hiera.warn("[hiera-consul] Skipping backend. Configuration error: #{e}")
32
39
  end
40
+
33
41
  end
34
42
 
35
43
  def lookup(key, scope, order_override, resolution_type)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiera-consul
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Sokolowski
@@ -9,21 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2015-06-22 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: json
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ">="
18
- - !ruby/object:Gem::Version
19
- version: '0'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: '0'
12
+ dependencies: []
27
13
  description: Hiera backend for looking up KV data stored in Vault
28
14
  email: jonathan.sokolowski@gmail.com
29
15
  executables: []