codybuell / laravault-auth
Package for authenticating Laravel against Hashicorp's Vault.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 1
Open Issues: 0
Type:laravel-package
Requires
- mashape/unirest-php: ^3.0
This package is not auto-updated.
Last update: 2024-11-10 05:24:42 UTC
README
Laravel package for using Hashicorp's Vault as an Authentication Provider. Authenticates users against an instance of Vault, stores user information in the session, and handles closing of the laravel session when the vault ttl expires. Built and tested with Laravel 5.4.
Installation
-
Install the LaravaultAuth package manually or with composer:
-
Composer
composer require codybuell/laravault-auth
-
Manually
git clone https://github.com/codybuell/laravault-auth.git vendor/codybuell/laravault-auth # edit composer.json, under autoload -> psr-4 append: "CodyBuell\\LaravaultAuth\\": "vendor/codybuell/laravault-auth/src"
-
-
Add provider to
config/app.php
providers array:CodyBuell\LaravaultAuth\LaravaultAuthServiceProvider::class,
-
Publish config and configure
config/laravault-auth.php
:php artisan vendor:publish
-
Set 'vault' as your auth provider in
config/auth.php
:'providers' => [ 'users' => [ 'driver' => 'vault', ], ]
-
Set auth to use username rather than email. In
app/Http/Controllers/Auth/LoginController.php
add:/** * Use usernames instead of emails. */ public function username() { return 'username'; }
Usage
Accessing Vault Client Token
Accessing User Attributes
Todo
- write tests
- add option to not tie laravel session length to vault ttl