Does anyone know if there is there a way to show a...
# prefect-ui
m
Does anyone know if there is there a way to show a secret’s current value in the UI?
1
k
There isn’t…the easiest way is Python with:
Copy code
from prefect.client import Secret
Secret("MYSECRET").get()
m
got it. thanks!
a
actually there is, run this query from interactive query tab:
Copy code
query {
  secret_value(name: "SECRETNAME")
}
👍 3