Astro Private Cloud
A better way to manage Apache Airflow yourself.
v1.x
To add a user as a System Admin through the Houston API, you need the following values:
id
users
astro workspace user list
You can then run the following query to add the user as a System Admin.
1mutation createSystemRoleBinding (2 $userId: ID! = "<user-id>"3 $role: Role! = SYSTEM_ADMIN4) {5 createSystemRoleBinding(6 userId: $userId7 role: $role8 ) {9 id10 }11}