2017-05-02 20:26:32 +00:00
|
|
|
---
|
|
|
|
layout: "docs"
|
2017-09-20 20:05:00 +00:00
|
|
|
page_title: "MySQL/MariaDB - Database - Secrets Engines"
|
2017-05-02 20:26:32 +00:00
|
|
|
sidebar_current: "docs-secrets-databases-mysql-maria"
|
|
|
|
description: |-
|
2017-09-20 20:05:00 +00:00
|
|
|
MySQL is one of the supported plugins for the database secrets engine. This
|
|
|
|
plugin generates database credentials dynamically based on configured roles
|
|
|
|
for the MySQL database.
|
2017-05-02 20:26:32 +00:00
|
|
|
---
|
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
# MySQL/MariaDB Database Secrets Engine
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
MySQL is one of the supported plugins for the database secrets engine. This
|
|
|
|
plugin generates database credentials dynamically based on configured roles for
|
|
|
|
the MySQL database.
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-05-04 01:41:39 +00:00
|
|
|
This plugin has a few different instances built into vault, each instance is for
|
|
|
|
a slightly different MySQL driver. The only difference between these plugins is
|
|
|
|
the length of usernames generated by the plugin as different versions of mysql
|
2017-06-26 14:08:18 +00:00
|
|
|
accept different lengths. The available plugins are:
|
2017-08-14 14:46:39 +00:00
|
|
|
|
2017-05-04 01:41:39 +00:00
|
|
|
- mysql-database-plugin
|
2017-05-04 17:41:59 +00:00
|
|
|
- mysql-aurora-database-plugin
|
|
|
|
- mysql-rds-database-plugin
|
2017-05-04 01:41:39 +00:00
|
|
|
- mysql-legacy-database-plugin
|
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
See the [database secrets engine](/docs/secrets/databases/index.html) docs for
|
|
|
|
more information about setting up the database secrets engine.
|
2017-05-04 20:38:49 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
## Setup
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
1. Enable the database secrets engine if it is not already enabled:
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
```text
|
|
|
|
$ vault secrets enable database
|
|
|
|
Success! Enabled the database secrets engine at: database/
|
|
|
|
```
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
By default, the secrets engine will enable at the name of the engine. To
|
|
|
|
enable the secrets engine at a different path, use the `-path` argument.
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
1. Configure Vault with the proper plugin and connection information:
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
```text
|
|
|
|
$ vault write database/config/my-mysql-database \
|
|
|
|
plugin_name=mysql-database-plugin \
|
|
|
|
connection_url="root:mysql@tcp(127.0.0.1:3306)/" \
|
|
|
|
allowed_roles="my-role"
|
|
|
|
```
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
1. Configure a role that maps a name in Vault to an SQL statement to execute to
|
|
|
|
create the database credential:
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
```text
|
|
|
|
$ vault write database/roles/my-role \
|
|
|
|
db_name=my-mysql-database \
|
|
|
|
creation_statements="CREATE USER '{{name}}'@'%' IDENTIFIED BY '{{password}}';GRANT SELECT ON *.* TO '{{name}}'@'%';" \
|
|
|
|
default_ttl="1h" \
|
|
|
|
max_ttl="24h"
|
|
|
|
Success! Data written to: database/roles/my-role
|
|
|
|
```
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
After the secrets engine is configured and a user/machine has a Vault token with
|
|
|
|
the proper permission, it can generate credentials.
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
1. Generate a new credential by reading from the `/creds` endpoint with the name
|
|
|
|
of the role:
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
```text
|
|
|
|
$ vault read database/creds/my-role
|
|
|
|
Key Value
|
|
|
|
--- -----
|
|
|
|
lease_id database/creds/my-role/2f6a614c-4aa2-7b19-24b9-ad944a8d4de6
|
|
|
|
lease_duration 1h
|
|
|
|
lease_renewable true
|
|
|
|
password 8cab931c-d62e-a73d-60d3-5ee85139cd66
|
|
|
|
username v-root-e2978cd0-
|
|
|
|
```
|
2017-05-03 05:24:31 +00:00
|
|
|
|
2017-07-04 17:59:08 +00:00
|
|
|
## Examples
|
|
|
|
|
|
|
|
### Using wildcards in grant statements
|
|
|
|
|
|
|
|
MySQL supports using wildcards in grant statements. These are sometimes needed
|
|
|
|
by applications which expect access to a large number of databases inside MySQL.
|
|
|
|
This can be realized by using a wildcard in the grant statement. For example if
|
|
|
|
you want the user created by Vault to have access to all databases starting with
|
|
|
|
`fooapp_` you could use the following creation statement:
|
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
```text
|
2017-07-04 17:59:08 +00:00
|
|
|
CREATE USER '{{name}}'@'%' IDENTIFIED BY '{{password}}'; GRANT SELECT ON `fooapp\_%`.* TO '{{name}}'@'%';
|
|
|
|
```
|
|
|
|
|
|
|
|
MySQL expects the part in which the wildcards are to be placed inside backticks.
|
|
|
|
If you want to add this creation statement to Vault via the Vault CLI you cannot
|
|
|
|
simply paste the above statement on the CLI because the shell will interpret the
|
|
|
|
text between the backticks as something that must be executed. The easiest way to
|
|
|
|
get around this is to encode the creation statement as Base64 and feed this to Vault.
|
|
|
|
For example:
|
|
|
|
|
2017-09-20 20:05:00 +00:00
|
|
|
```text
|
|
|
|
$ vault write database/roles/my-role \
|
2017-07-04 17:59:08 +00:00
|
|
|
db_name=mysql \
|
|
|
|
creation_statements="Q1JFQVRFIFVTRVIgJ3t7bmFtZX19J0AnJScgSURFTlRJRklFRCBCWSAne3twYXNzd29yZH19JzsgR1JBTlQgU0VMRUNUIE9OIGBmb29hcHBcXyVgLiogVE8gJ3t7bmFtZX19J0AnJSc7" \
|
|
|
|
default_ttl="1h" \
|
|
|
|
max_ttl="24h"
|
2017-08-14 14:46:39 +00:00
|
|
|
```
|
2017-09-20 20:05:00 +00:00
|
|
|
|
|
|
|
## API
|
|
|
|
|
|
|
|
The full list of configurable options can be seen in the [MySQL database plugin
|
|
|
|
API](/api/secret/databases/mysql-maria.html) page.
|
|
|
|
|
|
|
|
For more information on the database secrets engine's HTTP API please see the
|
|
|
|
[Database secrets engine API](/api/secret/databases/index.html) page.
|