This message was deleted.
# general
s
This message was deleted.
m
cc @gorgeous-egg-16927
c
@full-dress-10026 that data does not appear to encode printable characters, and that error means that the API server rejected the secret as a result.
If that’s the string you want, you have to base64 encode it.
If you’re running on some kind of unix, try:
Copy code
echo -n 'asd123' | base64
not sure what oyu mean when you say you can create it from the CLI though.
f
That answered my question. Thanks!