Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add allowed_organizational_units parameter to cert credential backend #5252

Merged
merged 2 commits into from
Sep 28, 2018
Merged

add allowed_organizational_units parameter to cert credential backend #5252

merged 2 commits into from
Sep 28, 2018

Commits on Sep 3, 2018

  1. add allowed_organiztaional_units parameter to cert credential backend

    Specifying the `allowed_organiztaional_units` parameter to a cert auth
    backend role will require client certificates to contain at least one of
    a list of one or more "organizational units" (OU).
    
    Example use cases:
    
    Certificates are issued to entities in an organization arrangement by
    organizational unit (OU). The OU may be a department, team, or any other logical
    grouping of resources with similar roles. The entities within the OU
    should be granted the same policies.
    
    ```
    $ vault write auth/cert/certs/ou-engineering \
        certificate=@ca.pem \
        policies=engineering \
        allowed_organiztaional_units=engineering
    
    $ vault write auth/cert/certs/ou-engineering \
        certificate=@ca.pem \
        policies=engineering \
        allowed_organiztaional_units=engineering,support
    ```
    joemiller committed Sep 3, 2018
    Configuration menu
    Copy the full SHA
    07cf8b9 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2018

  1. Configuration menu
    Copy the full SHA
    93afa04 View commit details
    Browse the repository at this point in the history