This is a standalone backend plugin for use with Hashicorp Vault. This plugin provides the functionality to generate users in Openstack Keystone.
This is a Vault plugin and is meant to work with Vault. This guide assumes you have already installed Vault and have a basic understanding of how Vault works.
Otherwise, first read this guide on how to get started with Vault.
To learn specifically about how plugins work, see documentation on Vault plugins.
go get github.com/parnurzeal/gorequestgo get github.com/hashicorp/vault/pluginsgo get github.com/hashicorp/go-plugingo get github.com/fatih/structsgo get github.com/google/gofuzz- `go build -o vault_keystone_plugin .``
Build the plugin.
Put the plugin binary into a location of your choice. This directory
will be specified as the plugin_directory
in the Vault config used to start the server.
...
plugin_directory = "path/to/plugin/directory"
...Start a Vault server with this config file:
$ vault server -config=path/to/config.json ...
...sha256sum vault_keystone_plugin
vault write sys/plugins/catalog/vault_keystone_plugin sha_256="<SHA from the previous step>" command="keystone"
vault mount -path=keystone -plugin-name=vault_keystone_plugin plugin
CLI write / API POST - set connection configuration
Parameters:
connection_url: URL of your Keystone instance, formatted likekeystoneip:port/v3/admin_auth_token: admin user token
CLI write / API POST CLI read / API GET - generate new user
Parameters:
namedefault_project_id(optional)domain_id(optional)enabled(optional)password(optional)
CLI write / API POST - generate new EC2-style credentials
Parameters:
user_idtenant_id
CLI write / API POST CLI read / API GET - generate new group
Parameters:
namedescription(optional)domain_id(optional)
CLI write / API POST CLI read / API GET - generate new project
Parameters:
nameis_domain(optional)description(optional)domain_id(optional)enabled(optional)parent_id(optional)
CLI write / API POST CLI read / API GET - generate new domain
Parameters:
namedescription(optional)enabled(optional)
CLI write / API POST CLI read / API GET - generate new role
Parameters:
namedomain_id(optional)
CLI write / API POST - Assign role to group on domain
Parameters:
domain_idgroup_idrole_id
CLI write / API POST - Assign role to user on domain
Parameters:
domain_iduser_idrole_id
CLI write / API POST - Assign role to group on project
Parameters:
project_idgroup_idrole_id
CLI write / API POST - Assign role to user on project
Parameters:
project_iduser_idrole_id
- Credentials
- Groups
- Policies
- Regions