Sha256: 1218f0d572b0f51a8a2197eeba9dc13683dde955b1810b93c66d26d0a40fe7c0

Contents?: true

Size: 644 Bytes

Versions: 56

Compression:

Stored size: 644 Bytes

Contents

@dsl
Feature: Assigning ownership

  Background:

  Scenario: Create without ownership
    When I run script:
    """
role "user", "bob"
    """
    Then the "role" "cucumber:user:bob" should not have an owner

  Scenario: Create with explicit ownership
    When I run script:
    """
role "user", "bob", ownerid: "foobar"
    """
    Then the "role" "cucumber:user:bob" should be owned by "foobar"
    
  Scenario: Create with scoped ownership
    When I run script:
    """
role "user", "bob" do
  owns do
    resource "food", "bacon"
  end
end
    """
    Then the "resource" "cucumber:food:bacon" should be owned by "cucumber:user:bob"
    

Version data entries

56 entries across 56 versions & 1 rubygems

Version Path
conjur-cli-4.12.0 features/dsl_ownership.feature
conjur-cli-4.10.3 features/dsl_ownership.feature
conjur-cli-4.10.1 features/dsl_ownership.feature
conjur-cli-4.9.3 features/dsl_ownership.feature
conjur-cli-4.8.0 features/dsl_ownership.feature
conjur-cli-4.7.5 features/dsl_ownership.feature
conjur-cli-4.7.4 features/dsl_ownership.feature
conjur-cli-4.7.3 features/dsl_ownership.feature
conjur-cli-4.7.2 features/dsl_ownership.feature
conjur-cli-4.7.1 features/dsl_ownership.feature
conjur-cli-4.7.0 features/dsl_ownership.feature
conjur-cli-4.6.1 features/dsl_ownership.feature
conjur-cli-4.5.1 features/dsl_ownership.feature
conjur-cli-4.5.0 features/dsl_ownership.feature
conjur-cli-4.4.0 features/dsl_ownership.feature
conjur-cli-4.3.0 features/dsl_ownership.feature