Service Level Security
Hasura allows access to be determined on a service level. Various configurations can be done to secure data access at multiple layers. We will look at each of them.
Configure an API secret
Initially, you might have configured an admin secret
to secure the GraphQL API. Plus, a role-based permission system for data access. But if you are using custom code via Actions
, Remote Schemas
, and Events
, then you need a way to restrict that custom code to be only called by Hasura and not from anywhere else.
This requires trust between the Hasura server and the custom code server. This trust is established through a shared API secret.
When creating an action/remote schema/events, you can add custom headers like the one below:
Set CORS policies
By default, Hasura allows all CORS requests. In a production scenario, you should restrict the queries made by a few selected domains.
For example, if your application's domain is https://example.com, you can allow requests from this and any of its subdomains by enabling the env var HASURA_GRAPHQL_CORS_DOMAIN="http://*.example.com".
Of course, this restriction applies only on the client side (browser). Since the API is publicly accessible in any case, these policies are useful only to restrict requests made from the browser. This still doesn't prevent anyone from making requests server-side or from mobile apps, for example, and shouldn't be used as a means to restrict such cases anyways.
SSL and HTTPS
Hasura Cloud projects come with free SSL for all apps, including custom domains; hence, the APIs are accessible over https
for regular queries and wss
for real-time subscription queries.
Note that wss
can be used for making all requests. (Not just subscriptions, but queries and mutations work too).
Manage team members and their levels of access
In Hasura Cloud, you can share console access with different team members with restricted access. You can do this by adding collaborators in the project settings page as given below:
There are two levels of access to the Hasura Cloud project:
admin
can perform API calls, view metrics, and configure rules without restrictions.user
has limited access depending on whether permissions for executing GraphQL and viewing metrics were provided.
- Build apps and APIs 10x faster
- Built-in authorization and caching
- 8x more performant than hand-rolled APIs