File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,9 @@ mysql-legacy-database-plugin:
180180cassandra-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+
183186postgresql-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:
192195mongodb-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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 2525 category : 'databases' ,
2626 content : [
2727 'cassandra' ,
28+ 'influxdb' ,
2829 'hanadb' ,
2930 'mongodb' ,
3031 'mssql' ,
Original file line number Diff line number Diff line change 207207 category : 'databases' ,
208208 content : [
209209 'cassandra' ,
210+ 'influxdb' ,
210211 'hanadb' ,
211212 'mongodb' ,
212213 'mssql' ,
You can’t perform that action at this time.
0 commit comments