Oasis is a CLI tool that runs otasks related to user management (onboaring/offboarding) in common platforms and services in Software Development.
It's made with Bun, Commander.js and TypeScript.
At gbh.tech, the onboarding and offboarding processes require a lot of tasks and involve multiple areas/departments for them to be completed successfully. This has led to missed tasks along the way, and only after internal audits or platform maintenance we notice users that haven't been fully processed.
With the Oasis CLI, we automated a small part of the process: access control. We ensure users are invited/added to the platform, or removed/deactivated according to the process being carried out.
At the moment, the Oasis CLI can only be triggered from a local environment, but we hope to extend it in the future to a more accessible format.
For Onboarding, the list of supported platforms at the moment is:
To configure the application access that allows Oasis to offboard or onboard
users, we'll be depending on the .env
file.
Check the .env.example
for insights on which values are needed for each
platform. It serves as an starting point to add all the required API keys,
tokens, and URLs.
As its name indicates, initializes the offboarding of an user in the specified platform. Offboarding might translate to removal of membership, deactivation of user, or complete deletion, depending on the context.
Oasis is not expected to clearly specify the difference by platform, so it is up to the operator to review and understand what's happening under the hood.
Examples:
# ./cli onboard jira --user $USER_EMAIL
./cli offboard jira --user [email protected]
# ./cli onboard clockify --user $USER_EMAIL
./cli offboard clockify --user [email protected]
# ./cli onboard github --username $GITHUB_USERNAME
./cli offboard github --username devops-gbh-bot
The onboarding command invites users to the specified platform.
Example:
# ./cli onboard jira --user $USER_EMAIL
./cli onboard jira --user [email protected]