Is there a cool (simple) way to create a Cypher secret as part of a provision workflow?
Yes
Could do it with a python script
Any other questions
I only know hot ways
yeah can just use a var to generate one
So if you want a password generated, you can do something like â<%=cypher.read(âpassword/15/â + instance.name)%>â
that would auto generate you a 15 char password for the instance. Note itâs a bit⌠overwhelming when you do this at scale since we donât have rbac on Cypher
Rbac on cypher is coming through policy
You could probably generate a policy scoped to user or group tied to that cipher at provision time too.
think so but wouldnt return, so use read and if it doesent exist it gets generated, as far as I can remember. looks like we need a docs update
read for password makes sense. Read for secret/ or something curious how I could supply a value
oh I took it as value needed to be generated not passed