An Okta command line interface for scripting and quickly performing routine tasks
Project description
Okta-CLI
NOW WITH HOMEBREW TAP ON A MAC - SEE "INSTALLATION" BELOW :))
This is a python-based CLI tool for Okta. It is not made or maintained by or in any way affiliated with anyone working at Okta. It is mainly driven by the personal needs of its author, although the feature set is becoming quite complete now.
It basically is a CLI wrapper around the Okta REST API.
NOTE: This is not the same as Okta's own okta
CLI interface.
The latter is apparently used for setting up the source for development projects.
Requirements
- A Mac or Linux machine, it might work on Windows (untested)
- Python 3.7+, for the change log see CHANGES.rst.
- unfortunately Python 3.11 is not yet supported due to a dependency.
Installation
Mac & homebrew
brew tap flypenguin/okta-cli
brew install okta-cli
All others
- create a python virtualenv:
mkvirtualenv okta-cli
pip install okta-cli
- start using it:
okta-cli config new
Quickstart
Every more complex function should have help texts available: okta-cli users add -h
, or
maybe okta-cli users update -h
or maybe okta-cli apps add -h
... those are probably the
most interesting ones.
$ pip install okta-cli # install :)
$ okta-cli config new \ # create a new okta profile
-n my-profile -\
-u https://my.okta.url \
-t API_TOKEN
$ okta-cli -h # get help
$ okta-cli apps -h # get help
$ okta-cli apps adduser \ # assign an app to a user
-a my_app_name -u 0109121 \
-f profile.employeeId
$ okta-cli users -h # get help
$ okta-cli users list --csv # list all users as csv
$ okta-cli users list \ # search users with a query
-f 'profile.email eq "my@email.com"'
$ okta-cli users update id012345678 \ # update a field of a user record
--set profile.email=my@other.email.com
$ okta cli users groups adduser \ # add a user to a group
$ okta-cli users get my-login -vvvvv # see http debug output
$ okta-cli users bulk-add add-list.csv # Bulk-ADD users
$ okta-cli users bulk-update update-list.xlsx # Bulk-UPDATE users
$ okta-cli features -h # get help
$ okta-cli features list # list okta server-side features
$ okta-cli features enable "Recent Activity" # enable an Okta feature
-g app1_rollout \
-u fred.flintstone@flintstones.com
$ okta-cli version # print version and exit
Configuration
Running config new
(see above) will store a JSON configuration file in the directory determined by the appdirs
module.
CSV / Excel file formats
The commands bulk-add
and bulk-update
can read from CSV or Excel. Consider this:
CSV:
- the first line MUST be a header line (yes, also in Excel).
- for the command
bulk-add
there MUST be aprofile.login
column, and there MUST NOT be anid
column. - for the command
bulk-update
there MUST be either aprofile.login
or anid
column, the latter has preference. - all other will most probably refer to profile fields, and map to the add/update API call.
- most probably you will want to have
profile.FIELD
columns (e.g.profile.firstName
,profile.zipCode
, ...). - you can see the valid standard field names here: https://developer.okta.com/docs/reference/api/schemas/#user-profile-base-subschema.
- most probably you will want to have
- all columns which do not contain a "." are ignored.
Excel:
- There MUST NOT be any formulas.
- Behavior with more than one sheet is undefined.
- Apart from that, be aware of number formatting, which is most probably not respected by
okta-cli
. - Otherwise, the same restrictions as for csv files apply.
Remarks:
- Some fields have value limitations on the Okta side
- e.g.
profile.preferredLanguage
must be a valid two-letter country code
- e.g.
Example:
In this example, the columns "country" and "gender" are ignored – their name does not contain a ".".
profile.login,profile.firstName,profile.lastName,profile.email,gender,profile.streetAddress,profile.zipCode,profile.city,country,profile.countryCode
ibrabben0@prlog.org,Iosep,Brabben,ibrabben0@prlog.org,Male,7931 Division Point,86983 CEDEX,Futuroscope,France,FR
(those fields are not part of Okta's standard field set, and this is an easy way to exclude columns from being used)
CSV files with only one column
If for any reason you want to create a CSV file with only one column, do it like this:
profile.login,
my@email.com,
Note the trailing comma.
Reasoning: okta-cli
tries to determine the column separator, and without one ... determination is tricky, and okta-cli
will shamelessly crash.
References
This project uses a few nice other projects:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file okta_cli-18.1.2-py3-none-any.whl
.
File metadata
- Download URL: okta_cli-18.1.2-py3-none-any.whl
- Upload date:
- Size: 28.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3debb12ce860dc0168e2fee05b10bdb10a289439591ccceaabf13d9428fca426 |
|
MD5 | 7083c6ddf99407d0625c9a7f3b35201f |
|
BLAKE2b-256 | 4597fda4830ef7c2a177dd4005735c23b38e869ac583d1f8eea2cfa528757075 |