https://prefect.io logo
m

michael.urrutia

08/22/2022, 4:25 PM
Hi! I was curious if there was any good docs or known methods for creating rotating secrets, where behind the scenes we are updating the value of a secrets
1
a

Anna Geller

08/22/2022, 4:53 PM
when saving a block you can set overwrite to change the value:
Copy code
Secret(value="mysuperstrongP4ssw0rd42").save(name="db_password", overwrite=True)
https://discourse.prefect.io/t/how-to-securely-store-secrets-in-prefect-2-0/1209
4 Views