Hi everyone, my team are using Prefect Cloud and f...
# ask-community
r
Hi everyone, my team are using Prefect Cloud and find that secrets are attached to the team, not project. So to divide the secret between environment (dev/stg/prod) we want to create new team for each env. But I can't find the button on the settings-team? How to create a new team?
2
c
Hi Ranu! Creating multiple teams associated with one license is an Enterprise-only feature
For managing secrets as you are describing we recommend templating the secret name within your Flow based on environment
n
This is a concern for me as well. My idea has been to not use cloud secrets but set them as environment variables instead, which will increase maintenance of the secrets..
r
I see, thanks for your response @Chris White . Is it like using secret suffix, and you pass the env via parameter as suffix?
@Noah Holm Yes so we had to choose the difficult of secret maintenance or, adjusting the secret usage to prefect cloud secret maybe by adding additional task/function
c
Yup exactly, using a prefix or a suffix and parametrizing it
r
Nice, thanks!