turbot / steampipe-plugin-okta

Use SQL to instantly query users, groups, applications and more from Okta. Open source CLI. No DB required.
https://hub.steampipe.io/plugins/turbot/okta
Apache License 2.0
8 stars 4 forks source link

Recompile plugin with steampipe-plugin-sdk v5.2.0-rc.8 #81

Closed misraved closed 1 year ago

misraved commented 1 year ago

Example query results

Results ``` select name, id, audiences, created, last_updated, status from okta_auth_server; +-------------------------+----------------------+------------------------------------------------------------+---------------------------+---------------------------+--------+ | name | id | audiences | created | last_updated | status | +-------------------------+----------------------+------------------------------------------------------------+---------------------------+---------------------------+--------+ | default | 1234123412341234123 | ["api://default"] | 2021-08-02T16:26:59+05:30 | 2021-08-02T16:26:59+05:30 | ACTIVE | | Snowflake Auth Server | 1234123412341234123 | ["https://xn12345.ap-south-1.aws.snowflakecomputing.com/"] | 2022-03-14T17:37:33+05:30 | 2022-03-14T17:37:33+05:30 | ACTIVE | | Snowflake Auth Server 2 | 1234123412341234123 | ["https://xn12345.ap-south-1.aws.snowflakecomputing.com/"] | 2022-03-14T20:53:58+05:30 | 2022-03-14T20:53:58+05:30 | ACTIVE | +-------------------------+----------------------+------------------------------------------------------------+---------------------------+---------------------------+--------+ ```