Hi! I have a prisma instance running on Digital Oc...
# orm-help
c
Hi! I have a prisma instance running on Digital Ocean and included the managementApiSecret in
docker-compose.yml
. The
/management
endpoint is protected, but my projects aren't. How do I enforce that the management secret is checked on queries and mutations on one of the projects? Seems like the public/private keypair authentication is deprecated since 1.8?
n
the management secret has nothing to do with queries and mutations for single services
the management secret protects queries and mutations to the
/management
API
single services have their own list of service secrets using the
secret
property in the
prisma.yml
file
c
Yeah, found it in docs right after I posted the question 🙈 Thanks for the fast reply! ⚡
💯 1