I can create an v1 auth with the following:
influx v1 auth create --username testbucket --password testing123 --read-bucket 81fa620566e5d58a --write-bucket 81fa620566e5d58a
But at some point I create an additional bucket that I want associated with that v1 auth (username: testbucket). There is no update
for influx v1 auth
so I’m assuming I have to delete the auth and re-create it (with multiple --read-bucket
--write-bucket
bucket ids):
influx v1 auth delete --id 0daf352b77580000
influx v1 auth create --username testbucket --password testing123 --read-bucket 81fa620566e5d58a --read-bucket 76fa9c6696336163 --write-bucket 81fa620566e5d58a --write-bucket 76fa9c6696336163
I really dislike the idea of proceeding like this so checking in here to see if I’m overlooking something.
Is there some other way to update a v1 auth with additional bucket permissions?