conjur-api 4.22.0 → 4.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 959c37a66821bda1666f469337a9a20e361a284f
4
- data.tar.gz: 5e577965d78ad5de62857e0e111eefe7e5a22e4f
3
+ metadata.gz: 112df80d0de58ed399d501948d9003abb1afcfb3
4
+ data.tar.gz: 33d13ad37bfc43d7f69643eba261b5d6367513f7
5
5
  SHA512:
6
- metadata.gz: d4ff60ab26a55265fff5644641beb2823a540e7ce9fec41beaf34f77a97d58921479818ae5f6c40c6988eb8827578adef20c6988b6c09b1d1ea7e8e2268a2b74
7
- data.tar.gz: ece7ea1af8e3e6be329fcb7a368610def126ed34fb386999357b3e10154cf59029b9407cd85fb5e7a73dec5ba39390bae2d927acbdd125b97a4b39f79ce961a8
6
+ metadata.gz: 64162326b7b50d050f1b46ba398b2e356cc719b0fa1520c22c6da2007288e52afa7e48e493aae01c9da70a0b15180018a32ff56d40183a7bd1dc31ca439bdb44
7
+ data.tar.gz: 54695910fe7b6e085111b7ffa52adb2e3b9b7ca07117d664debaf3439cb6d5d4aa63c0a9684e287257401fb9c1cb86651154c95dde53fbb3802866df564c508b
@@ -1,3 +1,7 @@
1
+ # v4.22.1
2
+
3
+ * `bootstrap` creates host and webservice `conjur/expiration`.
4
+
1
5
  # v4.22.0
2
6
 
3
7
  * Add `show_expired` argument to `Conjur::Variable#value` to allow
@@ -15,7 +15,7 @@ Feature: conjur bootstrap
15
15
  Then expressions "$conjur.host('conjur/ldap-sync').exists?" and "true" are equal
16
16
 
17
17
  Scenario: security_admin group has the expected members
18
- Then expressions "$conjur.role('group:security_admin').members.map(&:member).map(&:roleid).sort.join(',')" and "'cucumber:host:conjur/authn-tv,cucumber:host:conjur/ldap-sync,cucumber:host:conjur/policy-loader,cucumber:host:conjur/secrets-rotator,cucumber:user:admin'" are equal
18
+ Then expressions "$conjur.role('group:security_admin').members.map(&:member).map(&:roleid).sort.join(',')" and "'cucumber:host:conjur/authn-tv,cucumber:host:conjur/expiration,cucumber:host:conjur/ldap-sync,cucumber:host:conjur/policy-loader,cucumber:host:conjur/secrets-rotator,cucumber:user:admin'" are equal
19
19
 
20
20
  Scenario: security_admin can 'elevate' and 'reveal'
21
21
  Then expression "$conjur.resource('!:!:conjur').permitted_roles('elevate')" includes "$conjur.group('security_admin').roleid"
@@ -19,6 +19,6 @@
19
19
 
20
20
  module Conjur
21
21
  class API
22
- VERSION = "4.22.0"
22
+ VERSION = "4.22.1"
23
23
  end
24
24
  end
@@ -128,7 +128,7 @@ module Conjur
128
128
  # Create a set of hosts that have security_admin privilege.
129
129
  class SystemAccounts < Base
130
130
  def perform
131
- for hostname in %w(conjur/authn-tv conjur/secrets-rotator conjur/policy-loader conjur/ldap-sync)
131
+ for hostname in %w(conjur/authn-tv conjur/expiration conjur/secrets-rotator conjur/policy-loader conjur/ldap-sync)
132
132
  find_or_create_resource api.resource("webservice:#{hostname}"), security_admin
133
133
  find_or_create_record api.host(hostname), security_admin do |record, options|
134
134
  api.create_host(id: record.id, ownerid: security_admin.roleid).tap do |host|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: conjur-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.22.0
4
+ version: 4.22.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafal Rzepecki
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-03-08 00:00:00.000000000 Z
12
+ date: 2016-04-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rest-client