NAME
Etcd3::Auth
DESCRIPTION
Authentication
SYNOPSIS
# enable auth
$etcd->user_add
# add user
$etcd->user_add( { name => 'samba', password =>'P@$$' });
# add role
$etcd->role( { name => 'myrole' })->add;
# grant role
$etcd->user_role( { user => 'samba', role => 'myrole' })->grant;