Kar
Kar

Reputation: 1016

Airflow : How to disable User from editing Variables/Connections in GUI in Production Environment

We want to avoid users to manually editing or adding new variables/connections from Airflow GUI in Production. Currently, we are using JSON files which loads all the connections and variables for Airflow.

Can experts guide me on how to achieve this?

Upvotes: 0

Views: 505

Answers (1)

Mike Taylor
Mike Taylor

Reputation: 699

Sergiy's right, you will need to start looking at Airflow's Role Based Access (RBAC) documentation and implement from there. Here's a place to start: https://airflow.readthedocs.io/en/latest/howto/add-new-role.html

Upvotes: 1

Related Questions