Skip to content

Commit 3af9be4

Browse files
committed
small fixes to docs and indexes
1 parent f933956 commit 3af9be4

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ mysql-legacy-database-plugin:
180180
cassandra-database-plugin:
181181
@CGO_ENABLED=0 go build -o bin/cassandra-database-plugin ./plugins/database/cassandra/cassandra-database-plugin
182182

183+
influxdb-database-plugin:
184+
@CGO_ENABLED=0 go build -o bin/influxdb-database-plugin ./plugins/database/influxdb/influxdb-database-plugin
185+
183186
postgresql-database-plugin:
184187
@CGO_ENABLED=0 go build -o bin/postgresql-database-plugin ./plugins/database/postgresql/postgresql-database-plugin
185188

@@ -192,6 +195,6 @@ hana-database-plugin:
192195
mongodb-database-plugin:
193196
@CGO_ENABLED=0 go build -o bin/mongodb-database-plugin ./plugins/database/mongodb/mongodb-database-plugin
194197

195-
.PHONY: bin default prep test vet bootstrap fmt fmtcheck mysql-database-plugin mysql-legacy-database-plugin cassandra-database-plugin postgresql-database-plugin mssql-database-plugin hana-database-plugin mongodb-database-plugin static-assets ember-dist ember-dist-dev static-dist static-dist-dev
198+
.PHONY: bin default prep test vet bootstrap fmt fmtcheck mysql-database-plugin mysql-legacy-database-plugin cassandra-database-plugin influxdb-database-plugin postgresql-database-plugin mssql-database-plugin hana-database-plugin mongodb-database-plugin static-assets ember-dist ember-dist-dev static-dist static-dist-dev
196199

197200
.NOTPARALLEL: ember-dist ember-dist-dev static-assets

website/source/docs/secrets/databases/influxdb.html.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ create the database credential:
4747
```text
4848
$ vault write database/roles/my-role \
4949
db_name=my-influxdb-database \
50-
creation_statements=CREATE USER "{{username}}" WITH PASSWORD '{{password}}'; \
51-
GRANT ALL ON "vault" TO "{{username}}";" \
50+
creation_statements="CREATE USER \"{{username}}\" WITH PASSWORD '{{password}}'; \
51+
GRANT ALL ON \"vault\" TO \"{{username}}\";" \
5252
default_ttl="1h" \
5353
max_ttl="24h"
5454
Success! Data written to: database/roles/my-role

website/source/layouts/api.erb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
category: 'databases',
2626
content: [
2727
'cassandra',
28+
'influxdb',
2829
'hanadb',
2930
'mongodb',
3031
'mssql',

website/source/layouts/docs.erb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@
207207
category: 'databases',
208208
content: [
209209
'cassandra',
210+
'influxdb',
210211
'hanadb',
211212
'mongodb',
212213
'mssql',

0 commit comments

Comments
 (0)