import
Contents
Usage
$ airflow users import [-h] [-v] file
Arguments
| Parameter | Description |
|---|---|
file |
The name of the JSON file to import users from |
-h, --help |
Print out the help manual for this command |
-v, --verbose |
Make logging output more verbose |
Example format for a users JSON file:
[
{
"email": "foo@bar.org",
"firstname": "Jon",
"lastname": "Doe",
"roles": ["Public"],
"username": "jondoe"
}
]